Skip to content

Commit 98eacc8

Browse files
committed
Move pkgs
1 parent 7c49671 commit 98eacc8

99 files changed

Lines changed: 255 additions & 255 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

lib/node_modules/@stdlib/time/constants/README.md renamed to lib/node_modules/@stdlib/constants/time/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 constants = require( '@stdlib/time/constants' );
10+
var constants = require( '@stdlib/constants/time' );
1111
```
1212

1313
#### constants
@@ -31,7 +31,7 @@ var c = constants;
3131

3232
```javascript
3333
var getKeys = require( 'object-keys' ).shim();
34-
var constants = require( '@stdlib/time/constants' );
34+
var constants = require( '@stdlib/constants/time' );
3535

3636
console.log( getKeys( constants ) );
3737
```

lib/node_modules/@stdlib/time/constants/examples/index.js renamed to lib/node_modules/@stdlib/constants/time/examples/index.js

File renamed without changes.

lib/node_modules/@stdlib/time/constants/hours-in-day/README.md renamed to lib/node_modules/@stdlib/constants/time/hours-in-day/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 HOURS_IN_DAY = require( '@stdlib/time/constants/hours-in-day' );
10+
var HOURS_IN_DAY = require( '@stdlib/constants/time/hours-in-day' );
1111
```
1212

1313
#### HOURS_IN_DAY
@@ -30,7 +30,7 @@ var bool = ( HOURS_IN_DAY === 24 );
3030
```javascript
3131
var randu = require( '@stdlib/random/base/randu' );
3232
var roundn = require( '@stdlib/math/base/special/roundn' );
33-
var HOURS_IN_DAY = require( '@stdlib/time/constants/hours-in-day' );
33+
var HOURS_IN_DAY = require( '@stdlib/constants/time/hours-in-day' );
3434

3535
var hrs;
3636
var d;

lib/node_modules/@stdlib/time/constants/hours-in-day/docs/repl.txt renamed to lib/node_modules/@stdlib/constants/time/hours-in-day/docs/repl.txt

File renamed without changes.

lib/node_modules/@stdlib/time/constants/hours-in-day/examples/index.js renamed to lib/node_modules/@stdlib/constants/time/hours-in-day/examples/index.js

File renamed without changes.

lib/node_modules/@stdlib/time/constants/hours-in-day/lib/index.js renamed to lib/node_modules/@stdlib/constants/time/hours-in-day/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
/**
44
* Number of hours in a day.
55
*
6-
* @module @stdlib/time/constants/hours-in-day
6+
* @module @stdlib/constants/time/hours-in-day
77
* @type {integer32}
88
*
99
* @example
10-
* var HOURS_IN_DAY = require( '@stdlib/time/constants/hours-in-day' );
10+
* var HOURS_IN_DAY = require( '@stdlib/constants/time/hours-in-day' );
1111
* // returns 24
1212
*/
1313

lib/node_modules/@stdlib/time/constants/hours-in-day/package.json renamed to lib/node_modules/@stdlib/constants/time/hours-in-day/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/time/constants/hours-in-day",
2+
"name": "@stdlib/constants/time/hours-in-day",
33
"version": "0.0.0",
44
"description": "Number of hours in a day.",
55
"license": "Apache-2.0",

lib/node_modules/@stdlib/time/constants/hours-in-day/test/test.js renamed to lib/node_modules/@stdlib/constants/time/hours-in-day/test/test.js

File renamed without changes.

lib/node_modules/@stdlib/time/constants/hours-in-week/README.md renamed to lib/node_modules/@stdlib/constants/time/hours-in-week/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 HOURS_IN_WEEK = require( '@stdlib/time/constants/hours-in-week' );
10+
var HOURS_IN_WEEK = require( '@stdlib/constants/time/hours-in-week' );
1111
```
1212

1313
#### HOURS_IN_WEEK
@@ -30,7 +30,7 @@ var bool = ( HOURS_IN_WEEK === 168 );
3030
```javascript
3131
var randu = require( '@stdlib/random/base/randu' );
3232
var roundn = require( '@stdlib/math/base/special/roundn' );
33-
var HOURS_IN_WEEK = require( '@stdlib/time/constants/hours-in-week' );
33+
var HOURS_IN_WEEK = require( '@stdlib/constants/time/hours-in-week' );
3434

3535
var hrs;
3636
var w;

lib/node_modules/@stdlib/time/constants/hours-in-week/docs/repl.txt renamed to lib/node_modules/@stdlib/constants/time/hours-in-week/docs/repl.txt

File renamed without changes.

0 commit comments

Comments
 (0)