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.
|
/**
|
|
* 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);
|
|
}
|