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 fd7b8c3e50a3..7df994be3ede 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 two or more dimensions.' ); + throw new TypeError( format( 'invalid argument. First argument must be an ndarray having two or more 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 c0743073434e..bf24a9444688 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 two or more dimensions.' ); + throw new TypeError( format( 'invalid argument. First argument must be an ndarray having two or more 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 9e713ea1c967..739ffbeb5d3b 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 two or more dimensions.' ); + throw new TypeError( format( 'invalid argument. First argument must be an ndarray having two or more 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 2e5ef326fdd5..a649a152f69e 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 two or more dimensions.' ); + throw new TypeError( format( 'invalid argument. First argument must be an ndarray having two or more dimensions.' ) ); } // Check whether the input array is empty... N = numel( shape );