![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/n/versions/node/14.15.4/lib/node_modules/npm/node_modules/uuid/bin/ |
Upload File : |
#!/usr/bin/env node var assert = require('assert'); function usage() { console.log('Usage:'); console.log(' uuid'); console.log(' uuid v1'); console.log(' uuid v3 <name> <namespace uuid>'); console.log(' uuid v4'); console.log(' uuid v5 <name> <namespace uuid>'); console.log(' uuid --help'); console.log('\nNote: <namespace uuid> may be "URL" or "DNS" to use the corresponding UUIDs defined by RFC4122'); } var args = process.argv.slice(2); if (args.indexOf('--help') >= 0) { usage(); process.exit(0); } var version = args.shift() || 'v4'; switch (version) { case 'v1': var uuidV1 = require('../v1'); console.log(uuidV1()); break; case 'v3': var uuidV3 = require('../v3'); var name = args.shift(); var namespace = args.shift(); assert(name != null, 'v3 name not specified'); assert(namespace != null, 'v3 namespace not specified'); if (namespace == 'URL') namespace = uuidV3.URL; if (namespace == 'DNS') namespace = uuidV3.DNS; console.log(uuidV3(name, namespace)); break; case 'v4': var uuidV4 = require('../v4'); console.log(uuidV4()); break; case 'v5': var uuidV5 = require('../v5'); var name = args.shift(); var namespace = args.shift(); assert(name != null, 'v5 name not specified'); assert(namespace != null, 'v5 namespace not specified'); if (namespace == 'URL') namespace = uuidV5.URL; if (namespace == 'DNS') namespace = uuidV5.DNS; console.log(uuidV5(name, namespace)); break; default: usage(); process.exit(1); }