Skip to content

Commit fb8dd79

Browse files
committed
Rename package
1 parent 4c7b18c commit fb8dd79

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
@@ -168,7 +168,7 @@ ns.push({
168168
'@stdlib/types/typed-array/uint16',
169169
'@stdlib/types/typed-array/uint32',
170170
'@stdlib/types/typed-array/uint8',
171-
'@stdlib/types/typed-array/uint8clampedarray'
171+
'@stdlib/types/typed-array/uint8c'
172172
]
173173
});
174174

@@ -298,7 +298,7 @@ ns.push({
298298
'@stdlib/types/typed-array/uint16',
299299
'@stdlib/types/typed-array/uint32',
300300
'@stdlib/types/typed-array/uint8',
301-
'@stdlib/types/typed-array/uint8clampedarray'
301+
'@stdlib/types/typed-array/uint8c'
302302
]
303303
});
304304

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ ns.push({
119119
'@stdlib/types/typed-array/uint16',
120120
'@stdlib/types/typed-array/uint32',
121121
'@stdlib/types/typed-array/uint8',
122-
'@stdlib/types/typed-array/uint8clampedarray'
122+
'@stdlib/types/typed-array/uint8c'
123123
]
124124
});
125125

@@ -156,7 +156,7 @@ ns.push({
156156
'@stdlib/types/typed-array/uint16',
157157
'@stdlib/types/typed-array/uint32',
158158
'@stdlib/types/typed-array/uint8',
159-
'@stdlib/types/typed-array/uint8clampedarray'
159+
'@stdlib/types/typed-array/uint8c'
160160
]
161161
});
162162

@@ -193,7 +193,7 @@ ns.push({
193193
'@stdlib/types/typed-array/uint16',
194194
'@stdlib/types/typed-array/uint32',
195195
'@stdlib/types/typed-array/uint8',
196-
'@stdlib/types/typed-array/uint8clampedarray'
196+
'@stdlib/types/typed-array/uint8c'
197197
]
198198
});
199199

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ ns.push({
163163
'@stdlib/types/typed-array/uint16',
164164
'@stdlib/types/typed-array/int8',
165165
'@stdlib/types/typed-array/uint8',
166-
'@stdlib/types/typed-array/uint8clampedarray'
166+
'@stdlib/types/typed-array/uint8c'
167167
]
168168
});
169169

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ns.push({
1919
'@stdlib/types/typed-array/int8',
2020
'@stdlib/types/typed-array/uint32',
2121
'@stdlib/types/typed-array/uint8',
22-
'@stdlib/types/typed-array/uint8clampedarray'
22+
'@stdlib/types/typed-array/uint8c'
2323
]
2424
});
2525

@@ -46,7 +46,7 @@ ns.push({
4646
'@stdlib/types/typed-array/int8',
4747
'@stdlib/types/typed-array/uint16',
4848
'@stdlib/types/typed-array/uint8',
49-
'@stdlib/types/typed-array/uint8clampedarray'
49+
'@stdlib/types/typed-array/uint8c'
5050
]
5151
});
5252

@@ -73,14 +73,14 @@ ns.push({
7373
'@stdlib/types/typed-array/int8',
7474
'@stdlib/types/typed-array/uint16',
7575
'@stdlib/types/typed-array/uint32',
76-
'@stdlib/types/typed-array/uint8clampedarray'
76+
'@stdlib/types/typed-array/uint8c'
7777
]
7878
});
7979

8080
ns.push({
8181
'alias': 'Uint8ClampedArray',
82-
'path': '@stdlib/types/typed-array/uint8clampedarray',
83-
'value': require( '@stdlib/types/typed-array/uint8clampedarray' ),
82+
'path': '@stdlib/types/typed-array/uint8c',
83+
'value': require( '@stdlib/types/typed-array/uint8c' ),
8484
'type': 'Function',
8585
'related': [
8686
'@stdlib/types/typed-array/float32',

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

1717

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,9 @@ setReadOnly( ns, 'Uint8Array', require( '@stdlib/types/typed-array/uint8' ) );
104104
* @memberof ns
105105
* @readonly
106106
* @constructor
107-
* @see {@link module:@stdlib/types/typed-array/uint8clampedarray}
107+
* @see {@link module:@stdlib/types/typed-array/uint8c}
108108
*/
109-
setReadOnly( ns, 'Uint8ClampedArray', require( '@stdlib/types/typed-array/uint8clampedarray' ) );
109+
setReadOnly( ns, 'Uint8ClampedArray', require( '@stdlib/types/typed-array/uint8c' ) );
110110

111111
/**
112112
* @name utils

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

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

168168
var arr;
169169
var i;

lib/node_modules/@stdlib/types/typed-array/uint8clampedarray/benchmark/benchmark.js renamed to lib/node_modules/@stdlib/types/typed-array/uint8c/benchmark/benchmark.js

File renamed without changes.

lib/node_modules/@stdlib/types/typed-array/uint8clampedarray/benchmark/benchmark.length.js renamed to lib/node_modules/@stdlib/types/typed-array/uint8c/benchmark/benchmark.length.js

File renamed without changes.

0 commit comments

Comments
 (0)