mirror of
https://github.com/4ian/GDevelop.git
synced 2025-10-15 10:19:04 +00:00
9 lines
149 B
JavaScript
9 lines
149 B
JavaScript
// @flow
|
|
|
|
const makeTimestampedId = () =>
|
|
'' + Date.now() + '-' + Math.floor(Math.random() * 1000000);
|
|
|
|
module.exports = {
|
|
makeTimestampedId,
|
|
};
|