You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
8 years ago
|
/**
|
||
|
* Created by jiachenpan on 17/3/8.
|
||
|
*/
|
||
|
export default function createUniqueString() {
|
||
|
const timestamp = +new Date() + '';
|
||
|
const randomNum = parseInt((1 + Math.random()) * 65536) + '';
|
||
|
return (+(randomNum + timestamp)).toString(32);
|
||
|
}
|