Skip to content

Commit fe980fa

Browse files
committed
Move pkg
1 parent 17de295 commit fe980fa

File tree

15 files changed

+19
-19
lines changed

15 files changed

+19
-19
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ ns.push({
2727

2828
ns.push({
2929
'alias': 'getuid',
30-
'path': '@stdlib/utils/getuid',
31-
'value': require( '@stdlib/utils/getuid' ),
30+
'path': '@stdlib/process/getuid',
31+
'value': require( '@stdlib/process/getuid' ),
3232
'type': 'Function',
3333
'related': []
3434
});

lib/node_modules/@stdlib/os/homedir/lib/homedir.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
var ENV = require( '@stdlib/process/env' );
66
var isWindows = require( '@stdlib/assert/is-windows' );
77
var platform = require( '@stdlib/os/platform' );
8-
var getuid = require( '@stdlib/utils/getuid' );
8+
var getuid = require( '@stdlib/process/getuid' );
99

1010

1111
// MAIN //

lib/node_modules/@stdlib/os/homedir/test/test.homedir.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ function makeOpts() {
3434
var opts = {
3535
'@stdlib/os/platform': 'darwin',
3636
'@stdlib/assert/is-windows': false,
37-
'@stdlib/utils/getuid': getuid,
37+
'@stdlib/process/getuid': getuid,
3838
'@stdlib/process/env': ENV
3939
};
4040
return opts;
@@ -240,7 +240,7 @@ tape( 'the function returns the `/root` directory if run as `root` in a Linux en
240240
'@noCallThru': true
241241
};
242242
opts[ '@stdlib/os/platform' ] = 'linux';
243-
opts[ '@stdlib/utils/getuid' ] = mock;
243+
opts[ '@stdlib/process/getuid' ] = mock;
244244

245245
homedir = proxyquire( mpath, opts );
246246

lib/node_modules/@stdlib/utils/getuid/README.md renamed to lib/node_modules/@stdlib/process/getuid/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## Usage
88

99
```javascript
10-
var getuid = require( '@stdlib/utils/getuid' );
10+
var getuid = require( '@stdlib/process/getuid' );
1111
```
1212

1313
#### getuid()
@@ -38,7 +38,7 @@ var id = getuid();
3838
<!-- eslint no-undef: "error" -->
3939

4040
```javascript
41-
var getuid = require( '@stdlib/utils/getuid' );
41+
var getuid = require( '@stdlib/process/getuid' );
4242

4343
var uid = getuid();
4444
if ( uid === 0 ) {

lib/node_modules/@stdlib/utils/getuid/benchmark/benchmark.js renamed to lib/node_modules/@stdlib/process/getuid/benchmark/benchmark.js

File renamed without changes.
File renamed without changes.

lib/node_modules/@stdlib/utils/getuid/examples/index.js renamed to lib/node_modules/@stdlib/process/getuid/examples/index.js

File renamed without changes.
File renamed without changes.

lib/node_modules/@stdlib/utils/getuid/lib/index.js renamed to lib/node_modules/@stdlib/process/getuid/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
/**
44
* Return the numeric user identity of the calling process.
55
*
6-
* @module @stdlib/utils/getuid
6+
* @module @stdlib/process/getuid
77
*
88
* @example
9-
* var getuid = require( '@stdlib/utils/getuid' );
9+
* var getuid = require( '@stdlib/process/getuid' );
1010
*
1111
* var uid = getuid();
1212
*/
File renamed without changes.

0 commit comments

Comments
 (0)