time-to-botec/js/node_modules/@stdlib/ndarray/base/assert/is-casting-mode/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

2.4 KiB

isCastingMode

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

Usage

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

isCastingMode( value )

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

var bool = isCastingMode( 'safe' );
// returns true

Examples

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

var bool = isCastingMode( 'none' );
// returns true

bool = isCastingMode( 'equiv' );
// returns true

bool = isCastingMode( 'safe' );
// returns true

bool = isCastingMode( 'same-kind' );
// returns true

bool = isCastingMode( 'unsafe' );
// returns true

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

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