python-archieve-projects/WechatBot/node_modules/@pipeletteio/nop
Lee2vv 0b82373111 init 2024-05-05 13:46:50 +08:00
..
src init 2024-05-05 13:46:50 +08:00
CHANGELOG.md Backup 2023-08-18 21:52:54 +08:00
LICENSE Backup 2023-08-18 21:52:54 +08:00
README.md Backup 2023-08-18 21:52:54 +08:00
package.json Backup 2023-08-18 21:52:54 +08:00

README.md

@pipeletteio/nop

A simple nop (no-op) function helper. Nop is a function that does nothing.

Installation

npm install @pipeletteio/nop

Example

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

isNop(nop); // => true

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

Docs

Read documentation for more informations.

API

nop

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

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

Return void.

isNop

Check if the argument is the nop function.

argument type details
arg any The checked argument.

Return a boolean.