Skip to content

Commit a083cd5

Browse files
committed
Move package
1 parent 49a4db2 commit a083cd5

File tree

19 files changed

+25
-21
lines changed

19 files changed

+25
-21
lines changed

lib/node_modules/@stdlib/namespace/lib/namespace/r.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ ns.push({
7171

7272
ns.push({
7373
'alias': 'realmax',
74-
'path': '@stdlib/types/utils/real-max',
75-
'value': require( '@stdlib/types/utils/real-max' ),
74+
'path': '@stdlib/utils/real-max',
75+
'value': require( '@stdlib/utils/real-max' ),
7676
'type': 'Function',
7777
'related': [
7878
'@stdlib/types/utils/real-min',
@@ -86,7 +86,7 @@ ns.push({
8686
'value': require( '@stdlib/types/utils/real-min' ),
8787
'type': 'Function',
8888
'related': [
89-
'@stdlib/types/utils/real-max',
89+
'@stdlib/utils/real-max',
9090
'@stdlib/types/utils/type-min'
9191
]
9292
});

lib/node_modules/@stdlib/namespace/lib/namespace/s.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ns.push({
1414
'type': 'Function',
1515
'related': [
1616
'@stdlib/types/utils/safe-int-min',
17-
'@stdlib/types/utils/real-max',
17+
'@stdlib/utils/real-max',
1818
'@stdlib/types/utils/type-max'
1919
]
2020
});
@@ -193,7 +193,7 @@ ns.push({
193193
'value': require( '@stdlib/types/utils/size-of' ),
194194
'type': 'Function',
195195
'related': [
196-
'@stdlib/types/utils/real-max',
196+
'@stdlib/utils/real-max',
197197
'@stdlib/types/utils/type-max'
198198
]
199199
});

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ ns.push({
247247
'value': require( '@stdlib/types/utils/type-max' ),
248248
'type': 'Function',
249249
'related': [
250-
'@stdlib/types/utils/real-max',
250+
'@stdlib/utils/real-max',
251251
'@stdlib/types/utils/type-min'
252252
]
253253
});

lib/node_modules/@stdlib/types/utils/lib/index.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,6 @@ var setReadOnly = require( '@stdlib/utils/define-read-only-property' );
1818
*/
1919
var ns = {};
2020

21-
/**
22-
* @name realmax
23-
* @memberof ns
24-
* @readonly
25-
* @type {Function}
26-
* @see {@link module:@stdlib/types/utils/real-max}
27-
*/
28-
setReadOnly( ns, 'realmax', require( '@stdlib/types/utils/real-max' ) );
29-
3021
/**
3122
* @name realmin
3223
* @memberof ns

lib/node_modules/@stdlib/utils/lib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1323,6 +1323,15 @@ setReadOnly( utils, 'push', require( '@stdlib/utils/push' ) );
13231323
*/
13241324
setReadOnly( utils, 'stdin', require( '@stdlib/utils/read-stdin' ) );
13251325

1326+
/**
1327+
* @name realmax
1328+
* @memberof utils
1329+
* @readonly
1330+
* @type {Function}
1331+
* @see {@link module:@stdlib/utils/real-max}
1332+
*/
1333+
setReadOnly( utils, 'realmax', require( '@stdlib/utils/real-max' ) );
1334+
13261335
/**
13271336
* @name reduce
13281337
* @memberof utils

lib/node_modules/@stdlib/types/utils/real-max/README.md renamed to lib/node_modules/@stdlib/utils/real-max/README.md

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

1919
```javascript
20-
var realmax = require( '@stdlib/types/utils/real-max' );
20+
var realmax = require( '@stdlib/utils/real-max' );
2121
```
2222

2323
#### realmax( dtype )
@@ -54,7 +54,7 @@ The following numeric **real** types are supported:
5454
## Examples
5555

5656
```javascript
57-
var realmax = require( '@stdlib/types/utils/real-max' );
57+
var realmax = require( '@stdlib/utils/real-max' );
5858

5959
var m = realmax( 'float64' );
6060
// returns 1.7976931348623157e+308

0 commit comments

Comments
 (0)