wallet-core/node_modules/release-zalgo/index.js

10 lines
232 B
JavaScript
Raw Normal View History

2017-05-28 00:38:50 +02:00
'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