You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
166 B
12 lines
166 B
|
1 year ago
|
/**
|
||
|
|
@ 作者: 秦东
|
||
|
|
@ 时间: 2024-10-24 15:23:29
|
||
|
|
@ 功能: 获取时间戳
|
||
|
|
*/
|
||
|
|
function getTimeUnix(){
|
||
|
|
return Date.now().toString();
|
||
|
|
}
|
||
|
|
|
||
|
|
export{
|
||
|
|
getTimeUnix
|
||
|
|
}
|