diff --git a/lib/node_modules/@stdlib/repl/lib/namespace/f.js b/lib/node_modules/@stdlib/repl/lib/namespace/f.js index d9d3841eb147..68f0bd6cc1bc 100644 --- a/lib/node_modules/@stdlib/repl/lib/namespace/f.js +++ b/lib/node_modules/@stdlib/repl/lib/namespace/f.js @@ -166,7 +166,7 @@ ns.push({ '@stdlib/types/typed-array/int32', '@stdlib/types/typed-array/int8', '@stdlib/types/typed-array/uint16', - '@stdlib/types/typed-array/uint32array', + '@stdlib/types/typed-array/uint32', '@stdlib/types/typed-array/uint8array', '@stdlib/types/typed-array/uint8clampedarray' ] @@ -296,7 +296,7 @@ ns.push({ '@stdlib/types/typed-array/int32', '@stdlib/types/typed-array/int8', '@stdlib/types/typed-array/uint16', - '@stdlib/types/typed-array/uint32array', + '@stdlib/types/typed-array/uint32', '@stdlib/types/typed-array/uint8array', '@stdlib/types/typed-array/uint8clampedarray' ] diff --git a/lib/node_modules/@stdlib/repl/lib/namespace/i.js b/lib/node_modules/@stdlib/repl/lib/namespace/i.js index 417a2bff2fae..1f859d642bda 100644 --- a/lib/node_modules/@stdlib/repl/lib/namespace/i.js +++ b/lib/node_modules/@stdlib/repl/lib/namespace/i.js @@ -117,7 +117,7 @@ ns.push({ '@stdlib/types/typed-array/int32', '@stdlib/types/typed-array/int8', '@stdlib/types/typed-array/uint16', - '@stdlib/types/typed-array/uint32array', + '@stdlib/types/typed-array/uint32', '@stdlib/types/typed-array/uint8array', '@stdlib/types/typed-array/uint8clampedarray' ] @@ -154,7 +154,7 @@ ns.push({ '@stdlib/types/typed-array/int16', '@stdlib/types/typed-array/int8', '@stdlib/types/typed-array/uint16', - '@stdlib/types/typed-array/uint32array', + '@stdlib/types/typed-array/uint32', '@stdlib/types/typed-array/uint8array', '@stdlib/types/typed-array/uint8clampedarray' ] @@ -191,7 +191,7 @@ ns.push({ '@stdlib/types/typed-array/int16', '@stdlib/types/typed-array/int32', '@stdlib/types/typed-array/uint16', - '@stdlib/types/typed-array/uint32array', + '@stdlib/types/typed-array/uint32', '@stdlib/types/typed-array/uint8array', '@stdlib/types/typed-array/uint8clampedarray' ] diff --git a/lib/node_modules/@stdlib/repl/lib/namespace/t.js b/lib/node_modules/@stdlib/repl/lib/namespace/t.js index 01ccdab57b09..3029fed96944 100644 --- a/lib/node_modules/@stdlib/repl/lib/namespace/t.js +++ b/lib/node_modules/@stdlib/repl/lib/namespace/t.js @@ -158,7 +158,7 @@ ns.push({ '@stdlib/types/typed-array/float64array', '@stdlib/types/typed-array/float32', '@stdlib/types/typed-array/int32', - '@stdlib/types/typed-array/uint32array', + '@stdlib/types/typed-array/uint32', '@stdlib/types/typed-array/int16', '@stdlib/types/typed-array/uint16', '@stdlib/types/typed-array/int8', diff --git a/lib/node_modules/@stdlib/repl/lib/namespace/u.js b/lib/node_modules/@stdlib/repl/lib/namespace/u.js index 01658cd28013..7598f4c2baba 100644 --- a/lib/node_modules/@stdlib/repl/lib/namespace/u.js +++ b/lib/node_modules/@stdlib/repl/lib/namespace/u.js @@ -17,7 +17,7 @@ ns.push({ '@stdlib/types/typed-array/int16', '@stdlib/types/typed-array/int32', '@stdlib/types/typed-array/int8', - '@stdlib/types/typed-array/uint32array', + '@stdlib/types/typed-array/uint32', '@stdlib/types/typed-array/uint8array', '@stdlib/types/typed-array/uint8clampedarray' ] @@ -35,8 +35,8 @@ ns.push({ ns.push({ 'alias': 'Uint32Array', - 'path': '@stdlib/types/typed-array/uint32array', - 'value': require( '@stdlib/types/typed-array/uint32array' ), + 'path': '@stdlib/types/typed-array/uint32', + 'value': require( '@stdlib/types/typed-array/uint32' ), 'type': 'Function', 'related': [ '@stdlib/types/typed-array/float32', @@ -72,7 +72,7 @@ ns.push({ '@stdlib/types/typed-array/int32', '@stdlib/types/typed-array/int8', '@stdlib/types/typed-array/uint16', - '@stdlib/types/typed-array/uint32array', + '@stdlib/types/typed-array/uint32', '@stdlib/types/typed-array/uint8clampedarray' ] }); @@ -89,7 +89,7 @@ ns.push({ '@stdlib/types/typed-array/int32', '@stdlib/types/typed-array/int8', '@stdlib/types/typed-array/uint16', - '@stdlib/types/typed-array/uint32array', + '@stdlib/types/typed-array/uint32', '@stdlib/types/typed-array/uint8array' ] }); diff --git a/lib/node_modules/@stdlib/types/typed-array/factory/lib/ctors.js b/lib/node_modules/@stdlib/types/typed-array/factory/lib/ctors.js index a3a458b85256..416d38bbfeea 100644 --- a/lib/node_modules/@stdlib/types/typed-array/factory/lib/ctors.js +++ b/lib/node_modules/@stdlib/types/typed-array/factory/lib/ctors.js @@ -6,7 +6,7 @@ var CTORS = { 'float64': require( '@stdlib/types/typed-array/float64array' ), 'float32': require( '@stdlib/types/typed-array/float32' ), 'int32': require( '@stdlib/types/typed-array/int32' ), - 'uint32': require( '@stdlib/types/typed-array/uint32array' ), + 'uint32': require( '@stdlib/types/typed-array/uint32' ), 'int16': require( '@stdlib/types/typed-array/int16' ), 'uint16': require( '@stdlib/types/typed-array/uint16' ), 'int8': require( '@stdlib/types/typed-array/int8' ), diff --git a/lib/node_modules/@stdlib/types/typed-array/factory/test/test.js b/lib/node_modules/@stdlib/types/typed-array/factory/test/test.js index 19791fa602cb..cc49455ea8ce 100644 --- a/lib/node_modules/@stdlib/types/typed-array/factory/test/test.js +++ b/lib/node_modules/@stdlib/types/typed-array/factory/test/test.js @@ -7,7 +7,7 @@ var tape = require( 'tape' ); var Float64Array = require( '@stdlib/types/typed-array/float64array' ); var Float32Array = require( '@stdlib/types/typed-array/float32' ); var Int32Array = require( '@stdlib/types/typed-array/int32' ); -var Uint32Array = require( '@stdlib/types/typed-array/uint32array' ); +var Uint32Array = require( '@stdlib/types/typed-array/uint32' ); var Int16Array = require( '@stdlib/types/typed-array/int16' ); var Uint16Array = require( '@stdlib/types/typed-array/uint16' ); var Int8Array = require( '@stdlib/types/typed-array/int8' ); diff --git a/lib/node_modules/@stdlib/types/typed-array/lib/index.js b/lib/node_modules/@stdlib/types/typed-array/lib/index.js index 3fa498ef91dd..628f05f8b613 100644 --- a/lib/node_modules/@stdlib/types/typed-array/lib/index.js +++ b/lib/node_modules/@stdlib/types/typed-array/lib/index.js @@ -86,9 +86,9 @@ setReadOnly( ns, 'Uint16Array', require( '@stdlib/types/typed-array/uint16' ) ); * @memberof ns * @readonly * @constructor -* @see {@link module:@stdlib/types/typed-array/uint32array} +* @see {@link module:@stdlib/types/typed-array/uint32} */ -setReadOnly( ns, 'Uint32Array', require( '@stdlib/types/typed-array/uint32array' ) ); +setReadOnly( ns, 'Uint32Array', require( '@stdlib/types/typed-array/uint32' ) ); /** * @name Uint8Array diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/README.md b/lib/node_modules/@stdlib/types/typed-array/uint32/README.md similarity index 97% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/README.md rename to lib/node_modules/@stdlib/types/typed-array/uint32/README.md index 24a1c1ddcef5..0ff334367cb0 100644 --- a/lib/node_modules/@stdlib/types/typed-array/uint32array/README.md +++ b/lib/node_modules/@stdlib/types/typed-array/uint32/README.md @@ -18,7 +18,7 @@ ## Usage ``` javascript -var Uint32Array = require( '@stdlib/types/typed-array/uint32array' ); +var Uint32Array = require( '@stdlib/types/typed-array/uint32' ); ``` #### Uint32Array() @@ -163,7 +163,7 @@ TODO: add methods ``` javascript var randu = require( '@stdlib/math/base/random/randu' ); var round = require( '@stdlib/math/base/special/round' ); -var ctor = require( '@stdlib/types/typed-array/uint32array' ); +var ctor = require( '@stdlib/types/typed-array/uint32' ); var arr; var i; diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/benchmark/benchmark.js b/lib/node_modules/@stdlib/types/typed-array/uint32/benchmark/benchmark.js similarity index 100% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/benchmark/benchmark.js rename to lib/node_modules/@stdlib/types/typed-array/uint32/benchmark/benchmark.js diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/benchmark/benchmark.length.js b/lib/node_modules/@stdlib/types/typed-array/uint32/benchmark/benchmark.length.js similarity index 100% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/benchmark/benchmark.length.js rename to lib/node_modules/@stdlib/types/typed-array/uint32/benchmark/benchmark.length.js diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/docs/repl.txt b/lib/node_modules/@stdlib/types/typed-array/uint32/docs/repl.txt similarity index 100% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/docs/repl.txt rename to lib/node_modules/@stdlib/types/typed-array/uint32/docs/repl.txt diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/examples/index.js b/lib/node_modules/@stdlib/types/typed-array/uint32/examples/index.js similarity index 100% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/examples/index.js rename to lib/node_modules/@stdlib/types/typed-array/uint32/examples/index.js diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/lib/index.js b/lib/node_modules/@stdlib/types/typed-array/uint32/lib/index.js similarity index 81% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/lib/index.js rename to lib/node_modules/@stdlib/types/typed-array/uint32/lib/index.js index 28729710cf8a..561e534b7f9b 100644 --- a/lib/node_modules/@stdlib/types/typed-array/uint32array/lib/index.js +++ b/lib/node_modules/@stdlib/types/typed-array/uint32/lib/index.js @@ -3,10 +3,10 @@ /** * Typed array constructor which returns a typed array representing an array of 32-bit unsigned integers in the platform byte order. * -* @module @stdlib/types/typed-array/uint32array +* @module @stdlib/types/typed-array/uint32 * * @example -* var ctor = require( '@stdlib/types/typed-array/uint32array' ); +* var ctor = require( '@stdlib/types/typed-array/uint32' ); * * var arr = new ctor( 10 ); * // returns diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/lib/polyfill.js b/lib/node_modules/@stdlib/types/typed-array/uint32/lib/polyfill.js similarity index 100% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/lib/polyfill.js rename to lib/node_modules/@stdlib/types/typed-array/uint32/lib/polyfill.js diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/lib/uint32array.js b/lib/node_modules/@stdlib/types/typed-array/uint32/lib/uint32array.js similarity index 100% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/lib/uint32array.js rename to lib/node_modules/@stdlib/types/typed-array/uint32/lib/uint32array.js diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/package.json b/lib/node_modules/@stdlib/types/typed-array/uint32/package.json similarity index 95% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/package.json rename to lib/node_modules/@stdlib/types/typed-array/uint32/package.json index b4c840fc232c..fc325188a6fe 100644 --- a/lib/node_modules/@stdlib/types/typed-array/uint32array/package.json +++ b/lib/node_modules/@stdlib/types/typed-array/uint32/package.json @@ -1,5 +1,5 @@ { - "name": "@stdlib/types/typed-array/uint32array", + "name": "@stdlib/types/typed-array/uint32", "version": "0.0.0", "description": "Uint32Array.", "author": { diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/test/test.js b/lib/node_modules/@stdlib/types/typed-array/uint32/test/test.js similarity index 100% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/test/test.js rename to lib/node_modules/@stdlib/types/typed-array/uint32/test/test.js diff --git a/lib/node_modules/@stdlib/types/typed-array/uint32array/test/test.polyfill.js b/lib/node_modules/@stdlib/types/typed-array/uint32/test/test.polyfill.js similarity index 100% rename from lib/node_modules/@stdlib/types/typed-array/uint32array/test/test.polyfill.js rename to lib/node_modules/@stdlib/types/typed-array/uint32/test/test.polyfill.js diff --git a/lib/node_modules/@stdlib/types/typed-array/utils/reviver/lib/ctors.js b/lib/node_modules/@stdlib/types/typed-array/utils/reviver/lib/ctors.js index 028b7dfcdd2e..1bc992f171f0 100644 --- a/lib/node_modules/@stdlib/types/typed-array/utils/reviver/lib/ctors.js +++ b/lib/node_modules/@stdlib/types/typed-array/utils/reviver/lib/ctors.js @@ -6,7 +6,7 @@ var ctors = { 'Float64Array': require( '@stdlib/types/typed-array/float64array' ), 'Float32Array': require( '@stdlib/types/typed-array/float32' ), 'Int32Array': require( '@stdlib/types/typed-array/int32' ), - 'Uint32Array': require( '@stdlib/types/typed-array/uint32array' ), + 'Uint32Array': require( '@stdlib/types/typed-array/uint32' ), 'Int16Array': require( '@stdlib/types/typed-array/int16' ), 'Uint16Array': require( '@stdlib/types/typed-array/uint16' ), 'Int8Array': require( '@stdlib/types/typed-array/int8' ), diff --git a/lib/node_modules/@stdlib/types/typed-array/utils/reviver/test/test.js b/lib/node_modules/@stdlib/types/typed-array/utils/reviver/test/test.js index 76e12474fc3b..7991667079a8 100644 --- a/lib/node_modules/@stdlib/types/typed-array/utils/reviver/test/test.js +++ b/lib/node_modules/@stdlib/types/typed-array/utils/reviver/test/test.js @@ -10,7 +10,7 @@ var toJSON = require( '@stdlib/types/typed-array/utils/to-json' ); var Float64Array = require( '@stdlib/types/typed-array/float64array' ); var Float32Array = require( '@stdlib/types/typed-array/float32' ); var Int32Array = require( '@stdlib/types/typed-array/int32' ); -var Uint32Array = require( '@stdlib/types/typed-array/uint32array' ); +var Uint32Array = require( '@stdlib/types/typed-array/uint32' ); var Int16Array = require( '@stdlib/types/typed-array/int16' ); var Uint16Array = require( '@stdlib/types/typed-array/uint16' ); var Int8Array = require( '@stdlib/types/typed-array/int8' ); diff --git a/lib/node_modules/@stdlib/types/typed-array/utils/to-json/README.md b/lib/node_modules/@stdlib/types/typed-array/utils/to-json/README.md index e8c831e78165..46d01a10446f 100644 --- a/lib/node_modules/@stdlib/types/typed-array/utils/to-json/README.md +++ b/lib/node_modules/@stdlib/types/typed-array/utils/to-json/README.md @@ -58,7 +58,7 @@ For guidance on reviving a JSON-serialized typed array, see [`reviver()`][@stdli - [`Float64Array`][@stdlib/types/typed-array/float64array] - [`Float32Array`][@stdlib/types/typed-array/float32] - [`Int32Array`][@stdlib/types/typed-array/int32] - - [`Uint32Array`][@stdlib/types/typed-array/uint32array] + - [`Uint32Array`][@stdlib/types/typed-array/uint32] - [`Int16Array`][@stdlib/types/typed-array/int16] - [`Uint16Array`][@stdlib/types/typed-array/uint16] - [`Int8Array`][@stdlib/types/typed-array/int8] @@ -101,7 +101,7 @@ For guidance on reviving a JSON-serialized typed array, see [`reviver()`][@stdli var Float64Array = require( '@stdlib/types/typed-array/float64array' ); var Float32Array = require( '@stdlib/types/typed-array/float32' ); var Int32Array = require( '@stdlib/types/typed-array/int32' ); -var Uint32Array = require( '@stdlib/types/typed-array/uint32array' ); +var Uint32Array = require( '@stdlib/types/typed-array/uint32' ); var Int16Array = require( '@stdlib/types/typed-array/int16' ); var Uint16Array = require( '@stdlib/types/typed-array/uint16' ); var Int8Array = require( '@stdlib/types/typed-array/int8' ); @@ -212,7 +212,7 @@ json = toJSON( arr ); [@stdlib/types/typed-array/float64array]: https://github.com/stdlib-js/stdlib [@stdlib/types/typed-array/float32]: https://github.com/stdlib-js/stdlib [@stdlib/types/typed-array/int32]: https://github.com/stdlib-js/stdlib -[@stdlib/types/typed-array/uint32array]: https://github.com/stdlib-js/stdlib +[@stdlib/types/typed-array/uint32]: https://github.com/stdlib-js/stdlib [@stdlib/types/typed-array/int16]: https://github.com/stdlib-js/stdlib [@stdlib/types/typed-array/uint16]: https://github.com/stdlib-js/stdlib [@stdlib/types/typed-array/int8]: https://github.com/stdlib-js/stdlib diff --git a/lib/node_modules/@stdlib/types/typed-array/utils/to-json/examples/index.js b/lib/node_modules/@stdlib/types/typed-array/utils/to-json/examples/index.js index baaa32e047c1..59aaffc807ea 100644 --- a/lib/node_modules/@stdlib/types/typed-array/utils/to-json/examples/index.js +++ b/lib/node_modules/@stdlib/types/typed-array/utils/to-json/examples/index.js @@ -4,7 +4,7 @@ var Float64Array = require( '@stdlib/types/typed-array/float64array' ); var Float32Array = require( '@stdlib/types/typed-array/float32' ); var Int32Array = require( '@stdlib/types/typed-array/int32' ); -var Uint32Array = require( '@stdlib/types/typed-array/uint32array' ); +var Uint32Array = require( '@stdlib/types/typed-array/uint32' ); var Int16Array = require( '@stdlib/types/typed-array/int16' ); var Uint16Array = require( '@stdlib/types/typed-array/uint16' ); var Int8Array = require( '@stdlib/types/typed-array/int8' );