Test if an input value is a supported ndarray index mode.
var isIndexMode = require( '@stdlib/ndarray/base/assert/is-index-mode' );
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
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