PHP 8.2.30
Preview: README.md Size: 651 B
/opt/alt/alt-nodejs9/root/usr/lib/node_modules/npm/node_modules/dezalgo/README.md

# dezalgo

Contain async insanity so that the dark pony lord doesn't eat souls

See [this blog
post](http://blog.izs.me/post/59142742143/designing-apis-for-asynchrony).

## USAGE

Pass a callback to `dezalgo` and it will ensure that it is *always*
called in a future tick, and never in this tick.

```javascript
var dz = require('dezalgo')

var cache = {}
function maybeSync(arg, cb) {
  cb = dz(cb)

  // this will actually defer to nextTick
  if (cache[arg]) cb(null, cache[arg])

  fs.readFile(arg, function (er, data) {
    // since this is *already* defered, it will call immediately
    if (er) cb(er)
    cb(null, cache[arg] = data)
  })
}
```

Directory Contents

Dirs: 1 × Files: 5

Name Size Perms Modified Actions
- drwxr-xr-x 2024-03-03 22:42:02
Edit Download
111 B lrw-r--r-- 2021-09-28 11:28:45
Edit Download
368 B lrw-r--r-- 2021-09-28 11:28:45
Edit Download
765 B lrw-r--r-- 2021-09-28 11:28:45
Edit Download
3.27 KB lrw-r--r-- 2021-09-28 11:28:45
Edit Download
651 B lrw-r--r-- 2021-09-28 11:28:45
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).