Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
promisify-call
Advanced tools
Promisify a function call so users can call a function with a callback or get a promise
Promisify a function call so users can call a function with a callback or get a promise.
Promise
so requires Node >= 4.0.npm install promisify-call
function _uppercase(param, fn) {
setTimeout(() => {
return fn(null, param.toUpperCase());
}, 50);
}
function uppercase(param, fn) {
return promisifyCall(this, _uppercase, ...arguments);
}
// now we can call it using callback-style
uppercase('foo', (err, res) => {
console.log(res); // FOO
});
// OR promise style
const res = await uppercase('foo');
console.log(res); // FOO
undefined
| *
| Promise
Promisifies the call to fn
if appropriate given the arguments.
Calls the function fn
either using callback style if last argument is a function.
If last argument is not a function, fn
is called returning a promise.
This lets you create API that can be called in either fashions.
Kind: global function
Returns: undefined
| *
| Promise
- Promise if promisified
Param | Type | Description |
---|---|---|
ctx | Object | context / this |
fn | function | The function to call |
args | arguments | Arguments |
Copyright 2015 Bojan D.
Licensed under the MIT License.
FAQs
Promisify a function call so users can call a function with a callback or get a promise
The npm package promisify-call receives a total of 72,109 weekly downloads. As such, promisify-call popularity was classified as popular.
We found that promisify-call demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.