Skip to content
Subhajit Sahu edited this page Jul 22, 2022 · 2 revisions

Do nothing.

Similar: ARGUMENTS, NOOP, IDENTITY, COMPARE.


function NOOP(...args)
// args: arguments (ignored)

const {NOOP} = require('extra-function');


NOOP(1, 2);
// → undefined

NOOP('a', 'b');
// → undefined
Clone this wiki locally