JSPM

@pipeletteio/nop

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

A simple nop function helper

Package Exports

  • @pipeletteio/nop

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 (@pipeletteio/nop) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@pipeletteio/nop

A simple nop function helper.

Installation

npm install @pipeletteio/nop

Example

const { nop, isNop } = require('@pipeletteio/nop');

isNop(nop); // => true

isNop(function () {}); // => false

API

nop

The nop function which will be used to replace the non cancellable callables.

argument type details
...arg any[] ...

Return void.

Example:

new TimeMeter(process.hrtime());

isNop

Check if the argument is the nop function.

argument type details
arg any The checked argument.

Return a boolean.