Skip to content

Commit 25c4d12

Browse files
committed
Rename package
1 parent 6637b7a commit 25c4d12

22 files changed

Lines changed: 26 additions & 26 deletions

File tree

lib/node_modules/@stdlib/repl/lib/namespace/f.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ ns.push({
166166
'@stdlib/types/typed-array/int32',
167167
'@stdlib/types/typed-array/int8',
168168
'@stdlib/types/typed-array/uint16',
169-
'@stdlib/types/typed-array/uint32array',
169+
'@stdlib/types/typed-array/uint32',
170170
'@stdlib/types/typed-array/uint8array',
171171
'@stdlib/types/typed-array/uint8clampedarray'
172172
]
@@ -296,7 +296,7 @@ ns.push({
296296
'@stdlib/types/typed-array/int32',
297297
'@stdlib/types/typed-array/int8',
298298
'@stdlib/types/typed-array/uint16',
299-
'@stdlib/types/typed-array/uint32array',
299+
'@stdlib/types/typed-array/uint32',
300300
'@stdlib/types/typed-array/uint8array',
301301
'@stdlib/types/typed-array/uint8clampedarray'
302302
]

lib/node_modules/@stdlib/repl/lib/namespace/i.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ ns.push({
117117
'@stdlib/types/typed-array/int32',
118118
'@stdlib/types/typed-array/int8',
119119
'@stdlib/types/typed-array/uint16',
120-
'@stdlib/types/typed-array/uint32array',
120+
'@stdlib/types/typed-array/uint32',
121121
'@stdlib/types/typed-array/uint8array',
122122
'@stdlib/types/typed-array/uint8clampedarray'
123123
]
@@ -154,7 +154,7 @@ ns.push({
154154
'@stdlib/types/typed-array/int16',
155155
'@stdlib/types/typed-array/int8',
156156
'@stdlib/types/typed-array/uint16',
157-
'@stdlib/types/typed-array/uint32array',
157+
'@stdlib/types/typed-array/uint32',
158158
'@stdlib/types/typed-array/uint8array',
159159
'@stdlib/types/typed-array/uint8clampedarray'
160160
]
@@ -191,7 +191,7 @@ ns.push({
191191
'@stdlib/types/typed-array/int16',
192192
'@stdlib/types/typed-array/int32',
193193
'@stdlib/types/typed-array/uint16',
194-
'@stdlib/types/typed-array/uint32array',
194+
'@stdlib/types/typed-array/uint32',
195195
'@stdlib/types/typed-array/uint8array',
196196
'@stdlib/types/typed-array/uint8clampedarray'
197197
]

lib/node_modules/@stdlib/repl/lib/namespace/t.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ ns.push({
158158
'@stdlib/types/typed-array/float64array',
159159
'@stdlib/types/typed-array/float32',
160160
'@stdlib/types/typed-array/int32',
161-
'@stdlib/types/typed-array/uint32array',
161+
'@stdlib/types/typed-array/uint32',
162162
'@stdlib/types/typed-array/int16',
163163
'@stdlib/types/typed-array/uint16',
164164
'@stdlib/types/typed-array/int8',

lib/node_modules/@stdlib/repl/lib/namespace/u.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ns.push({
1717
'@stdlib/types/typed-array/int16',
1818
'@stdlib/types/typed-array/int32',
1919
'@stdlib/types/typed-array/int8',
20-
'@stdlib/types/typed-array/uint32array',
20+
'@stdlib/types/typed-array/uint32',
2121
'@stdlib/types/typed-array/uint8array',
2222
'@stdlib/types/typed-array/uint8clampedarray'
2323
]
@@ -35,8 +35,8 @@ ns.push({
3535

3636
ns.push({
3737
'alias': 'Uint32Array',
38-
'path': '@stdlib/types/typed-array/uint32array',
39-
'value': require( '@stdlib/types/typed-array/uint32array' ),
38+
'path': '@stdlib/types/typed-array/uint32',
39+
'value': require( '@stdlib/types/typed-array/uint32' ),
4040
'type': 'Function',
4141
'related': [
4242
'@stdlib/types/typed-array/float32',
@@ -72,7 +72,7 @@ ns.push({
7272
'@stdlib/types/typed-array/int32',
7373
'@stdlib/types/typed-array/int8',
7474
'@stdlib/types/typed-array/uint16',
75-
'@stdlib/types/typed-array/uint32array',
75+
'@stdlib/types/typed-array/uint32',
7676
'@stdlib/types/typed-array/uint8clampedarray'
7777
]
7878
});
@@ -89,7 +89,7 @@ ns.push({
8989
'@stdlib/types/typed-array/int32',
9090
'@stdlib/types/typed-array/int8',
9191
'@stdlib/types/typed-array/uint16',
92-
'@stdlib/types/typed-array/uint32array',
92+
'@stdlib/types/typed-array/uint32',
9393
'@stdlib/types/typed-array/uint8array'
9494
]
9595
});

lib/node_modules/@stdlib/types/typed-array/factory/lib/ctors.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var CTORS = {
66
'float64': require( '@stdlib/types/typed-array/float64array' ),
77
'float32': require( '@stdlib/types/typed-array/float32' ),
88
'int32': require( '@stdlib/types/typed-array/int32' ),
9-
'uint32': require( '@stdlib/types/typed-array/uint32array' ),
9+
'uint32': require( '@stdlib/types/typed-array/uint32' ),
1010
'int16': require( '@stdlib/types/typed-array/int16' ),
1111
'uint16': require( '@stdlib/types/typed-array/uint16' ),
1212
'int8': require( '@stdlib/types/typed-array/int8' ),

lib/node_modules/@stdlib/types/typed-array/factory/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ var tape = require( 'tape' );
77
var Float64Array = require( '@stdlib/types/typed-array/float64array' );
88
var Float32Array = require( '@stdlib/types/typed-array/float32' );
99
var Int32Array = require( '@stdlib/types/typed-array/int32' );
10-
var Uint32Array = require( '@stdlib/types/typed-array/uint32array' );
10+
var Uint32Array = require( '@stdlib/types/typed-array/uint32' );
1111
var Int16Array = require( '@stdlib/types/typed-array/int16' );
1212
var Uint16Array = require( '@stdlib/types/typed-array/uint16' );
1313
var Int8Array = require( '@stdlib/types/typed-array/int8' );

lib/node_modules/@stdlib/types/typed-array/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,9 @@ setReadOnly( ns, 'Uint16Array', require( '@stdlib/types/typed-array/uint16' ) );
8686
* @memberof ns
8787
* @readonly
8888
* @constructor
89-
* @see {@link module:@stdlib/types/typed-array/uint32array}
89+
* @see {@link module:@stdlib/types/typed-array/uint32}
9090
*/
91-
setReadOnly( ns, 'Uint32Array', require( '@stdlib/types/typed-array/uint32array' ) );
91+
setReadOnly( ns, 'Uint32Array', require( '@stdlib/types/typed-array/uint32' ) );
9292

9393
/**
9494
* @name Uint8Array

lib/node_modules/@stdlib/types/typed-array/uint32array/README.md renamed to lib/node_modules/@stdlib/types/typed-array/uint32/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
## Usage
1919

2020
``` javascript
21-
var Uint32Array = require( '@stdlib/types/typed-array/uint32array' );
21+
var Uint32Array = require( '@stdlib/types/typed-array/uint32' );
2222
```
2323

2424
#### Uint32Array()
@@ -163,7 +163,7 @@ TODO: add methods
163163
``` javascript
164164
var randu = require( '@stdlib/math/base/random/randu' );
165165
var round = require( '@stdlib/math/base/special/round' );
166-
var ctor = require( '@stdlib/types/typed-array/uint32array' );
166+
var ctor = require( '@stdlib/types/typed-array/uint32' );
167167

168168
var arr;
169169
var i;

lib/node_modules/@stdlib/types/typed-array/uint32array/benchmark/benchmark.js renamed to lib/node_modules/@stdlib/types/typed-array/uint32/benchmark/benchmark.js

File renamed without changes.

lib/node_modules/@stdlib/types/typed-array/uint32array/benchmark/benchmark.length.js renamed to lib/node_modules/@stdlib/types/typed-array/uint32/benchmark/benchmark.length.js

File renamed without changes.

0 commit comments

Comments
 (0)