diff --git a/lib/node_modules/@stdlib/ndarray/iter/column-entries/lib/main.js b/lib/node_modules/@stdlib/ndarray/iter/column-entries/lib/main.js index 1a905f033d7f..6b45f14e7719 100644 --- a/lib/node_modules/@stdlib/ndarray/iter/column-entries/lib/main.js +++ b/lib/node_modules/@stdlib/ndarray/iter/column-entries/lib/main.js @@ -120,7 +120,7 @@ function nditerColumnEntries( x ) { // Ensure that the input array has sufficient dimensions... if ( ndims < 2 ) { - throw new TypeError( 'invalid argument. First argument must be an ndarray having at least two dimensions.' ); + throw new TypeError( format( 'invalid argument. First argument must be an ndarray having at least two dimensions.' ) ); } // Check whether the input array is empty... diff --git a/lib/node_modules/@stdlib/ndarray/iter/columns/lib/main.js b/lib/node_modules/@stdlib/ndarray/iter/columns/lib/main.js index ff7da68a5d86..90bca2203814 100644 --- a/lib/node_modules/@stdlib/ndarray/iter/columns/lib/main.js +++ b/lib/node_modules/@stdlib/ndarray/iter/columns/lib/main.js @@ -120,7 +120,7 @@ function nditerColumns( x ) { // Ensure that the input array has sufficient dimensions... if ( ndims < 2 ) { - throw new TypeError( 'invalid argument. First argument must be an ndarray having at least two dimensions.' ); + throw new TypeError( format( 'invalid argument. First argument must be an ndarray having at least two dimensions.' ) ); } // Check whether the input array is empty... N = numel( shape ); diff --git a/lib/node_modules/@stdlib/ndarray/iter/matrices/lib/main.js b/lib/node_modules/@stdlib/ndarray/iter/matrices/lib/main.js index 517c2a210e26..6d098e5f08ba 100644 --- a/lib/node_modules/@stdlib/ndarray/iter/matrices/lib/main.js +++ b/lib/node_modules/@stdlib/ndarray/iter/matrices/lib/main.js @@ -114,7 +114,7 @@ function nditerMatrices( x ) { // Ensure that the input array has sufficient dimensions... if ( ndims < 3 ) { - throw new TypeError( 'invalid argument. First argument must be an ndarray having at least three dimensions.' ); + throw new TypeError( format( 'invalid argument. First argument must be an ndarray having at least three dimensions.' ) ); } // Check whether the input array is empty... N = numel( shape ); diff --git a/lib/node_modules/@stdlib/ndarray/iter/matrix-entries/lib/main.js b/lib/node_modules/@stdlib/ndarray/iter/matrix-entries/lib/main.js index 294cabf77c43..ea6ba6a23b5b 100644 --- a/lib/node_modules/@stdlib/ndarray/iter/matrix-entries/lib/main.js +++ b/lib/node_modules/@stdlib/ndarray/iter/matrix-entries/lib/main.js @@ -120,7 +120,7 @@ function nditerMatrixEntries( x ) { // Ensure that the input array has sufficient dimensions... if ( ndims < 3 ) { - throw new TypeError( 'invalid argument. First argument must be an ndarray having at least three dimensions.' ); + throw new TypeError( format( 'invalid argument. First argument must be an ndarray having at least three dimensions.' ) ); } // Check whether the input array is empty... diff --git a/lib/node_modules/@stdlib/ndarray/iter/row-entries/lib/main.js b/lib/node_modules/@stdlib/ndarray/iter/row-entries/lib/main.js index 2f6d21e84864..98a370602a9e 100644 --- a/lib/node_modules/@stdlib/ndarray/iter/row-entries/lib/main.js +++ b/lib/node_modules/@stdlib/ndarray/iter/row-entries/lib/main.js @@ -120,7 +120,7 @@ function nditerRowEntries( x ) { // Ensure that the input array has sufficient dimensions... if ( ndims < 2 ) { - throw new TypeError( 'invalid argument. First argument must be an ndarray having at least two dimensions.' ); + throw new TypeError( format( 'invalid argument. First argument must be an ndarray having at least two dimensions.' ) ); } // Check whether the input array is empty... diff --git a/lib/node_modules/@stdlib/ndarray/iter/rows/lib/main.js b/lib/node_modules/@stdlib/ndarray/iter/rows/lib/main.js index 44214b507195..8e443db6ded6 100644 --- a/lib/node_modules/@stdlib/ndarray/iter/rows/lib/main.js +++ b/lib/node_modules/@stdlib/ndarray/iter/rows/lib/main.js @@ -120,7 +120,7 @@ function nditerRows( x ) { // Ensure that the input array has sufficient dimensions... if ( ndims < 2 ) { - throw new TypeError( 'invalid argument. First argument must be an ndarray having at least two dimensions.' ); + throw new TypeError( format( 'invalid argument. First argument must be an ndarray having at least two dimensions.' ) ); } // Check whether the input array is empty... N = numel( shape );