Skip to content

Commit

Permalink
feat: add isByteOrder to namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kgryte committed Sep 22, 2024
1 parent b18478e commit 43aa58f
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/array/base/assert/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,15 @@ setReadOnly( ns, 'isBooleanDataType', require( '@stdlib/array/base/assert/is-boo
*/
setReadOnly( ns, 'isBooleanArray', require( '@stdlib/array/base/assert/is-booleanarray' ) );

/**
* @name isByteOrder
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/array/base/assert/is-byte-order}
*/
setReadOnly( ns, 'isByteOrder', require( '@stdlib/array/base/assert/is-byte-order' ) );

/**
* @name isComplexFloatingPointDataType
* @memberof ns
Expand Down

1 comment on commit 43aa58f

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
array/base/assert/is-byte-order $\color{green}98/98$
$\color{green}+100.00\%$
$\color{green}2/2$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}98/98$
$\color{green}+100.00\%$
array/base/assert $\color{green}249/249$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}249/249$
$\color{green}+100.00\%$
array/byte-orders $\color{green}84/84$
$\color{green}+100.00\%$
$\color{green}3/3$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}84/84$
$\color{green}+100.00\%$
array $\color{green}901/901$
$\color{green}+100.00\%$
$\color{green}1/1$
$\color{green}+100.00\%$
$\color{green}0/0$
$\color{green}+100.00\%$
$\color{green}901/901$
$\color{green}+100.00\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.