Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

noop

Function which does nothing.

Usage

var noop = require( '@stdlib/utils/noop' );

noop()

A function which does nothing.

noop();
// ...does nothing.

Examples

var noop = require( '@stdlib/utils/noop' );

function foo( next ) {
    // Do something...

    // Then...
    next();
}

foo( noop );