UNPKG

ice.fo.utils

Version:

7 lines (6 loc) 253 B
module.exports = function randomObjectId () { const timestamp = (new Date().getTime() / 1000 | 0).toString(16) return timestamp + 'xxxxxxxxxxxxxxxx'.replace(/[x]/g, function () { return (Math.random() * 16 | 0).toString(16) }).toLowerCase() }