UNPKG

dmp-cli

Version:

Dmp component's cli

12 lines (11 loc) 296 B
module.exports = { isAbsPath: (p) => { if (process.platform.indexOf('win') === 0) { return /^\w:/.test(p) } else { return /^\//.test(p) } }, isNone: v => v === undefined, randomWord: () => (`0000${(Math.random() * Math.pow(36, 5) << 0).toString(36)}`).slice(-5) }