Socket
Socket
Sign inDemoInstall

promisify-call

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

promisify-call

Promisify a function call so users can call a function with a callback or get a promise


Version published
Weekly downloads
114K
decreased by-1.16%
Maintainers
1
Weekly downloads
 
Created
Source

promisify-call

npm version build status

Promisify a function call so users can call a function with a callback or get a promise.

  • 2.0 works only with native Promise so requires Node >= 4.0.
  • 1.0 uses Bluebird and should work with older Node.js

Installation

npm install promisify-call

Usage

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

API Reference

promisifyCall(ctx, fn, args) ⇒ 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

ParamTypeDescription
ctxObjectcontext / this
fnfunctionThe function to call
argsargumentsArguments

License

Copyright 2015 Bojan D.

Licensed under the MIT License.

Keywords

FAQs

Package last updated on 16 Jan 2017

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc