noop-promise
v0.0.3
Published
Promise for noop
Maintainers
Readme
noop-promise
1. Install
npm i noop-promise
# or
yarn add noop-promise
# or
pnpm i noop-promise2. Import
import noopPromise from 'noop-promise';
// or
import { noopPromise } from 'noop-promise';3. Use
import { noopPromise } from 'noop.js';
const fn = async (callback = noopPromise) => {
await callback();
};