Skip to content

Latest commit

 

History

History

is-index-mode

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

isIndexMode

Test if an input value is a supported ndarray index mode.

Usage

var isIndexMode = require( '@stdlib/ndarray/base/assert/is-index-mode' );

isIndexMode( value )

Tests if an input value is a supported ndarray index mode.

var bool = isIndexMode( 'throw' );
// returns true

bool = isIndexMode( 'normalize' );
// returns true

bool = isIndexMode( 'clamp' );
// returns true

bool = isIndexMode( 'wrap' );
// returns true

Examples

var isIndexMode = require( '@stdlib/ndarray/base/assert/is-index-mode' );

var bool = isIndexMode( 'throw' );
// returns true

bool = isIndexMode( 'wrap' );
// returns true

bool = isIndexMode( 'clamp' );
// returns true

bool = isIndexMode( '' );
// returns false

bool = isIndexMode( 'foo' );
// returns false