noop3

◻️ Supreme nothingness


Keywords
noop, no-op, empty, nothing, function, func, fn, cant-you-tell, carrots, comon, goats, javascript, joke, moot, nada, nodejs, noooooooooooooooooooooop, not-serious, nothingness, som-tam, supreme, supreme-nothingness, unicorns
License
MIT
Install
npm install noop3@1000.0.0

Documentation


noop3


◻️ Supreme nothingness

Build Status Coverage Status

Install

$ npm install noop3

Usage

const noop = require('noop3');

function unicorn(fn) {
	fn = fn || noop;
	return fn('unicorn');
}
unicorn();

// Also compatible with non-mythical single horned creatures
function narwhal(fn) {
	fn = fn || noop;
	return fn('narwhal');
}
narwhal();

// Using the noop factory
const fn = require('noop3/factory');
const rainbow = fn();
const flowers = fn();
console.log(rainbow === flowers);
//=> false

rainbow();
//=> undefined

Related

License

MIT © Sindre Sorhus