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( '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
Did you find this page helpful?