summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/uuid/bin/uuid
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/uuid/bin/uuid')
-rwxr-xr-xdeps/npm/node_modules/uuid/bin/uuid26
1 files changed, 26 insertions, 0 deletions
diff --git a/deps/npm/node_modules/uuid/bin/uuid b/deps/npm/node_modules/uuid/bin/uuid
new file mode 100755
index 0000000000..f732e9918e
--- /dev/null
+++ b/deps/npm/node_modules/uuid/bin/uuid
@@ -0,0 +1,26 @@
+#!/usr/bin/env node
+
+var path = require('path');
+var uuid = require(path.join(__dirname, '..'));
+
+var arg = process.argv[2];
+
+if ('--help' === arg) {
+ console.log('\n USAGE: uuid [version] [options]\n\n');
+ console.log(' options:\n');
+ console.log(' --help Display this message and exit\n');
+ process.exit(0);
+}
+
+if (null == arg) {
+ console.log(uuid());
+ process.exit(0);
+}
+
+if ('v1' !== arg && 'v4' !== arg) {
+ console.error('Version must be RFC4122 version 1 or version 4, denoted as "v1" or "v4"');
+ process.exit(1);
+}
+
+console.log(uuid[arg]());
+process.exit(0);