����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 18.223.121.54 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /usr/lib/node_modules/npm/node_modules/util-promisify/ |
Upload File : |
# util-promisify Node 8's [`require('util').promisify`](https://nodejs.org/api/util.html#util_util_promisify_original) as a node module, so you can use it right now! Supports [all major node versions](https://github.com/nodejs/LTS#lts-schedule1). [](http://travis-ci.org/juliangruber/util-promisify) [](https://www.npmjs.org/package/util-promisify) [](https://greenkeeper.io/) ## Usage ```js const promisify = require('util-promisify'); const fs = require('fs'); const stat = promisify(fs.stat); stat('/tmp/').then(s => { // ... }); ``` ## Installation ```bash $ npm install util-promisify ``` ## API See `util.promisify`'s [API docs](https://nodejs.org/api/util.html#util_util_promisify_original). ### promisify(original) ### (Symbol) promisify.custom If available, the Symbol is reexported from node core's `util` module. ## License MIT