Skip to content

Commit 4c7b18c

Browse files
committed
Renamed package
1 parent 25c4d12 commit 4c7b18c

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
@@ -167,7 +167,7 @@ ns.push({
167167
'@stdlib/types/typed-array/int8',
168168
'@stdlib/types/typed-array/uint16',
169169
'@stdlib/types/typed-array/uint32',
170-
'@stdlib/types/typed-array/uint8array',
170+
'@stdlib/types/typed-array/uint8',
171171
'@stdlib/types/typed-array/uint8clampedarray'
172172
]
173173
});
@@ -297,7 +297,7 @@ ns.push({
297297
'@stdlib/types/typed-array/int8',
298298
'@stdlib/types/typed-array/uint16',
299299
'@stdlib/types/typed-array/uint32',
300-
'@stdlib/types/typed-array/uint8array',
300+
'@stdlib/types/typed-array/uint8',
301301
'@stdlib/types/typed-array/uint8clampedarray'
302302
]
303303
});

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ ns.push({
118118
'@stdlib/types/typed-array/int8',
119119
'@stdlib/types/typed-array/uint16',
120120
'@stdlib/types/typed-array/uint32',
121-
'@stdlib/types/typed-array/uint8array',
121+
'@stdlib/types/typed-array/uint8',
122122
'@stdlib/types/typed-array/uint8clampedarray'
123123
]
124124
});
@@ -155,7 +155,7 @@ ns.push({
155155
'@stdlib/types/typed-array/int8',
156156
'@stdlib/types/typed-array/uint16',
157157
'@stdlib/types/typed-array/uint32',
158-
'@stdlib/types/typed-array/uint8array',
158+
'@stdlib/types/typed-array/uint8',
159159
'@stdlib/types/typed-array/uint8clampedarray'
160160
]
161161
});
@@ -192,7 +192,7 @@ ns.push({
192192
'@stdlib/types/typed-array/int32',
193193
'@stdlib/types/typed-array/uint16',
194194
'@stdlib/types/typed-array/uint32',
195-
'@stdlib/types/typed-array/uint8array',
195+
'@stdlib/types/typed-array/uint8',
196196
'@stdlib/types/typed-array/uint8clampedarray'
197197
]
198198
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ ns.push({
162162
'@stdlib/types/typed-array/int16',
163163
'@stdlib/types/typed-array/uint16',
164164
'@stdlib/types/typed-array/int8',
165-
'@stdlib/types/typed-array/uint8array',
165+
'@stdlib/types/typed-array/uint8',
166166
'@stdlib/types/typed-array/uint8clampedarray'
167167
]
168168
});

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ns.push({
1818
'@stdlib/types/typed-array/int32',
1919
'@stdlib/types/typed-array/int8',
2020
'@stdlib/types/typed-array/uint32',
21-
'@stdlib/types/typed-array/uint8array',
21+
'@stdlib/types/typed-array/uint8',
2222
'@stdlib/types/typed-array/uint8clampedarray'
2323
]
2424
});
@@ -45,7 +45,7 @@ ns.push({
4545
'@stdlib/types/typed-array/int32',
4646
'@stdlib/types/typed-array/int8',
4747
'@stdlib/types/typed-array/uint16',
48-
'@stdlib/types/typed-array/uint8array',
48+
'@stdlib/types/typed-array/uint8',
4949
'@stdlib/types/typed-array/uint8clampedarray'
5050
]
5151
});
@@ -62,8 +62,8 @@ ns.push({
6262

6363
ns.push({
6464
'alias': 'Uint8Array',
65-
'path': '@stdlib/types/typed-array/uint8array',
66-
'value': require( '@stdlib/types/typed-array/uint8array' ),
65+
'path': '@stdlib/types/typed-array/uint8',
66+
'value': require( '@stdlib/types/typed-array/uint8' ),
6767
'type': 'Function',
6868
'related': [
6969
'@stdlib/types/typed-array/float32',
@@ -90,7 +90,7 @@ ns.push({
9090
'@stdlib/types/typed-array/int8',
9191
'@stdlib/types/typed-array/uint16',
9292
'@stdlib/types/typed-array/uint32',
93-
'@stdlib/types/typed-array/uint8array'
93+
'@stdlib/types/typed-array/uint8'
9494
]
9595
});
9696

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
@@ -10,7 +10,7 @@ var CTORS = {
1010
'int16': require( '@stdlib/types/typed-array/int16' ),
1111
'uint16': require( '@stdlib/types/typed-array/uint16' ),
1212
'int8': require( '@stdlib/types/typed-array/int8' ),
13-
'uint8': require( '@stdlib/types/typed-array/uint8array' ),
13+
'uint8': require( '@stdlib/types/typed-array/uint8' ),
1414
'uint8c': require( '@stdlib/types/typed-array/uint8clampedarray' )
1515
};
1616

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
@@ -11,7 +11,7 @@ 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' );
14-
var Uint8Array = require( '@stdlib/types/typed-array/uint8array' );
14+
var Uint8Array = require( '@stdlib/types/typed-array/uint8' );
1515
var Uint8ClampedArray = require( '@stdlib/types/typed-array/uint8clampedarray' );
1616
var instanceOf = require( '@stdlib/assert/instance-of' );
1717
var typedarray = require( './../lib' );

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ setReadOnly( ns, 'Uint32Array', require( '@stdlib/types/typed-array/uint32' ) );
9595
* @memberof ns
9696
* @readonly
9797
* @constructor
98-
* @see {@link module:@stdlib/types/typed-array/uint8array}
98+
* @see {@link module:@stdlib/types/typed-array/uint8}
9999
*/
100-
setReadOnly( ns, 'Uint8Array', require( '@stdlib/types/typed-array/uint8array' ) );
100+
setReadOnly( ns, 'Uint8Array', require( '@stdlib/types/typed-array/uint8' ) );
101101

102102
/**
103103
* @name Uint8ClampedArray

lib/node_modules/@stdlib/types/typed-array/uint8array/README.md renamed to lib/node_modules/@stdlib/types/typed-array/uint8/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 Uint8Array = require( '@stdlib/types/typed-array/uint8array' );
21+
var Uint8Array = require( '@stdlib/types/typed-array/uint8' );
2222
```
2323

2424
#### Uint8Array()
@@ -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/uint8array' );
166+
var ctor = require( '@stdlib/types/typed-array/uint8' );
167167

168168
var arr;
169169
var i;

lib/node_modules/@stdlib/types/typed-array/uint8array/benchmark/benchmark.js renamed to lib/node_modules/@stdlib/types/typed-array/uint8/benchmark/benchmark.js

File renamed without changes.

lib/node_modules/@stdlib/types/typed-array/uint8array/benchmark/benchmark.length.js renamed to lib/node_modules/@stdlib/types/typed-array/uint8/benchmark/benchmark.length.js

File renamed without changes.

0 commit comments

Comments
 (0)