Adding node_modules

This commit is contained in:
Deepak Sattiraju 2019-09-10 15:40:46 +05:30
parent 39fc719fd9
commit b77c57fb24
223 changed files with 27237 additions and 1 deletions

15
node_modules/.bin/uuid generated vendored Normal file
View file

@ -0,0 +1,15 @@
#!/bin/sh
basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
case `uname` in
*CYGWIN*) basedir=`cygpath -w "$basedir"`;;
esac
if [ -x "$basedir/node" ]; then
"$basedir/node" "$basedir/../uuid/bin/uuid" "$@"
ret=$?
else
node "$basedir/../uuid/bin/uuid" "$@"
ret=$?
fi
exit $ret