mirror of
https://github.com/1disk/edp445.git
synced 2024-08-14 22:47:02 +00:00
22 lines
368 B
JavaScript
22 lines
368 B
JavaScript
var wrappy = require('wrappy')
|
|
module.exports = wrappy(dezalgo)
|
|
|
|
var asap = require('asap')
|
|
|
|
function dezalgo (cb) {
|
|
var sync = true
|
|
asap(function () {
|
|
sync = false
|
|
})
|
|
|
|
return function zalgoSafe() {
|
|
var args = arguments
|
|
var me = this
|
|
if (sync)
|
|
asap(function() {
|
|
cb.apply(me, args)
|
|
})
|
|
else
|
|
cb.apply(me, args)
|
|
}
|
|
}
|