Skip to content

Commit 4788d47

Browse files
committed
Rename package
1 parent fb8dd79 commit 4788d47

33 files changed

Lines changed: 38 additions & 38 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ ns.push({
161161
'value': require( '@stdlib/types/typed-array/float32' ),
162162
'type': 'Function',
163163
'related': [
164-
'@stdlib/types/typed-array/float64array',
164+
'@stdlib/types/typed-array/float64',
165165
'@stdlib/types/typed-array/int16',
166166
'@stdlib/types/typed-array/int32',
167167
'@stdlib/types/typed-array/int8',
@@ -287,8 +287,8 @@ ns.push({
287287

288288
ns.push({
289289
'alias': 'Float64Array',
290-
'path': '@stdlib/types/typed-array/float64array',
291-
'value': require( '@stdlib/types/typed-array/float64array' ),
290+
'path': '@stdlib/types/typed-array/float64',
291+
'value': require( '@stdlib/types/typed-array/float64' ),
292292
'type': 'Function',
293293
'related': [
294294
'@stdlib/types/typed-array/float32',

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ ns.push({
113113
'type': 'Function',
114114
'related': [
115115
'@stdlib/types/typed-array/float32',
116-
'@stdlib/types/typed-array/float64array',
116+
'@stdlib/types/typed-array/float64',
117117
'@stdlib/types/typed-array/int32',
118118
'@stdlib/types/typed-array/int8',
119119
'@stdlib/types/typed-array/uint16',
@@ -150,7 +150,7 @@ ns.push({
150150
'type': 'Function',
151151
'related': [
152152
'@stdlib/types/typed-array/float32',
153-
'@stdlib/types/typed-array/float64array',
153+
'@stdlib/types/typed-array/float64',
154154
'@stdlib/types/typed-array/int16',
155155
'@stdlib/types/typed-array/int8',
156156
'@stdlib/types/typed-array/uint16',
@@ -187,7 +187,7 @@ ns.push({
187187
'type': 'Function',
188188
'related': [
189189
'@stdlib/types/typed-array/float32',
190-
'@stdlib/types/typed-array/float64array',
190+
'@stdlib/types/typed-array/float64',
191191
'@stdlib/types/typed-array/int16',
192192
'@stdlib/types/typed-array/int32',
193193
'@stdlib/types/typed-array/uint16',

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ ns.push({
155155
'value': require( '@stdlib/types/typed-array/factory' ),
156156
'type': 'Function',
157157
'related': [
158-
'@stdlib/types/typed-array/float64array',
158+
'@stdlib/types/typed-array/float64',
159159
'@stdlib/types/typed-array/float32',
160160
'@stdlib/types/typed-array/int32',
161161
'@stdlib/types/typed-array/uint32',

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ns.push({
1313
'type': 'Function',
1414
'related': [
1515
'@stdlib/types/typed-array/float32',
16-
'@stdlib/types/typed-array/float64array',
16+
'@stdlib/types/typed-array/float64',
1717
'@stdlib/types/typed-array/int16',
1818
'@stdlib/types/typed-array/int32',
1919
'@stdlib/types/typed-array/int8',
@@ -40,7 +40,7 @@ ns.push({
4040
'type': 'Function',
4141
'related': [
4242
'@stdlib/types/typed-array/float32',
43-
'@stdlib/types/typed-array/float64array',
43+
'@stdlib/types/typed-array/float64',
4444
'@stdlib/types/typed-array/int16',
4545
'@stdlib/types/typed-array/int32',
4646
'@stdlib/types/typed-array/int8',
@@ -67,7 +67,7 @@ ns.push({
6767
'type': 'Function',
6868
'related': [
6969
'@stdlib/types/typed-array/float32',
70-
'@stdlib/types/typed-array/float64array',
70+
'@stdlib/types/typed-array/float64',
7171
'@stdlib/types/typed-array/int16',
7272
'@stdlib/types/typed-array/int32',
7373
'@stdlib/types/typed-array/int8',
@@ -84,7 +84,7 @@ ns.push({
8484
'type': 'Function',
8585
'related': [
8686
'@stdlib/types/typed-array/float32',
87-
'@stdlib/types/typed-array/float64array',
87+
'@stdlib/types/typed-array/float64',
8888
'@stdlib/types/typed-array/int16',
8989
'@stdlib/types/typed-array/int32',
9090
'@stdlib/types/typed-array/int8',

lib/node_modules/@stdlib/types/complex/utils/reim/lib/reim.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
// MODULES //
44

5-
var Float64Array = require( '@stdlib/types/typed-array/float64array' ); // eslint-disable-line no-redeclare
5+
var Float64Array = require( '@stdlib/types/typed-array/float64' ); // eslint-disable-line no-redeclare
66
var Float32Array = require( '@stdlib/types/typed-array/float32' ); // eslint-disable-line no-redeclare
77

88

lib/node_modules/@stdlib/types/complex/utils/reim/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
var tape = require( 'tape' );
66
var Complex128 = require( '@stdlib/types/complex/complex128' );
77
var Complex64 = require( '@stdlib/types/complex/complex64' );
8-
var Float64Array = require( '@stdlib/types/typed-array/float64array' ); // eslint-disable-line no-redeclare
8+
var Float64Array = require( '@stdlib/types/typed-array/float64' ); // eslint-disable-line no-redeclare
99
var Float32Array = require( '@stdlib/types/typed-array/float32' ); // eslint-disable-line no-redeclare
1010
var reim = require( './../lib' );
1111

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
@@ -3,7 +3,7 @@
33
// MAIN //
44

55
var CTORS = {
6-
'float64': require( '@stdlib/types/typed-array/float64array' ),
6+
'float64': require( '@stdlib/types/typed-array/float64' ),
77
'float32': require( '@stdlib/types/typed-array/float32' ),
88
'int32': require( '@stdlib/types/typed-array/int32' ),
99
'uint32': require( '@stdlib/types/typed-array/uint32' ),

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
@@ -4,7 +4,7 @@
44
// MODULES //
55

66
var tape = require( 'tape' );
7-
var Float64Array = require( '@stdlib/types/typed-array/float64array' );
7+
var Float64Array = require( '@stdlib/types/typed-array/float64' );
88
var Float32Array = require( '@stdlib/types/typed-array/float32' );
99
var Int32Array = require( '@stdlib/types/typed-array/int32' );
1010
var Uint32Array = require( '@stdlib/types/typed-array/uint32' );

lib/node_modules/@stdlib/types/typed-array/float32/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ var arr = new Float32Array( 5 );
4444
Creates a [typed array][mdn-typed-array] from another [typed array][mdn-typed-array].
4545

4646
``` javascript
47-
var Float64Array = require( '@stdlib/types/typed-array/float64array' );
47+
var Float64Array = require( '@stdlib/types/typed-array/float64' );
4848

4949
var arr1 = new Float64Array( [ 0.5, 0.5, 0.5 ] );
5050
var arr2 = new Float32Array( arr1 );

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

2424
#### Float64Array()
@@ -162,7 +162,7 @@ TODO: add methods
162162

163163
``` javascript
164164
var randu = require( '@stdlib/math/base/random/randu' );
165-
var ctor = require( '@stdlib/types/typed-array/float64array' );
165+
var ctor = require( '@stdlib/types/typed-array/float64' );
166166

167167
var arr;
168168
var i;

0 commit comments

Comments
 (0)