wallet-core/node_modules/release-zalgo/index.js
2017-05-28 00:40:43 +02:00

10 lines
232 B
JavaScript

'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