diff options
Diffstat (limited to 'node_modules/release-zalgo/index.js')
-rw-r--r-- | node_modules/release-zalgo/index.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/node_modules/release-zalgo/index.js b/node_modules/release-zalgo/index.js new file mode 100644 index 000000000..151cb0d96 --- /dev/null +++ b/node_modules/release-zalgo/index.js @@ -0,0 +1,9 @@ +'use strict' + +const Async = require('./lib/Async') +const Sync = require('./lib/Sync') +const unwrapSync = require('./lib/unwrapSync') + +exports.sync = () => new Sync() +exports.async = () => new Async() +exports.unwrapSync = unwrapSync |