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

Do nothing.

Similar: ARGUMENTS, NOOP, IDENTITY, COMPARE.


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

const xfunction = require('extra-function');


xfunction.NOOP(1, 2);
// → undefined

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