UNPKG

ice.fo.utils

Version:

9 lines (7 loc) 237 B
/** * This return a random id string. The algorithm used may be changed so don't rely on it for sensitive data. */ const randomObjectId = require('./randomObjectId') module.exports = function randomId () { return randomObjectId() }