JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 27777605
  • Score
    100M100P100Q223915F
  • License MIT

Is function really asynchronous function? Trying to guess that based on check if [common-callback-names][] exists as function arguments names or you can pass your custom.

Package Exports

  • is-async-function

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (is-async-function) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

is-async-function npmjs.com The MIT License

Is function really asynchronous function? Trying to guess that based on check if common-callback-names exists as function arguments names or you can pass your custom.

code climate standard code style travis build status coverage status dependency status

Install

npm i is-async-function --save

Usage

For more use-cases see the tests

const isAsyncFunction = require('is-async-function')

isAsyncFunction

Trying to guess is fn asynchronous function or not. But not is-callback-function be aware of that diff.

Params

  • fn {Function}: Is this fn a callback function.
  • names {Array}: Arguments names, default are common-callback-names.
  • returns {Boolean}

Example

var fs = require('fs')
var isAsyncFn = require('is-async-function')

console.log(isAsyncFunction(fs.readFile)) // => true
console.log(isAsyncFunction(fs.stat)) // => true

console.log(isAsyncFunction(fs.readFileSync)) // => false
console.log(isAsyncFunction(fs.statSync)) // => false

// or pass custom names to recognize as `async`
console.log(isAsyncFunction(fs.stat, ['cb'])) // => false
console.log(isAsyncFunction(fs.readFile, ['callback', 'next']))
// => false, because fs.readFile uses `callback_`

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.
But before doing anything, please read the CONTRIBUTING.md guidelines.

Charlike Make Reagent new message to charlike freenode #charlike

tunnckoCore.tk keybase tunnckoCore tunnckoCore npm tunnckoCore twitter tunnckoCore github