Skip to content

Commit 3008d92

Browse files
committed
Move namespace up a level
1 parent e7ac225 commit 3008d92

File tree

156 files changed

+411
-411
lines changed

Some content is hidden

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

156 files changed

+411
-411
lines changed

lib/node_modules/@stdlib/index.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,15 @@ setReadOnly( stdlib, 'fastmath', require( '@stdlib/fastmath' ) );
135135
*/
136136
setReadOnly( stdlib, 'fs', require( '@stdlib/fs' ) );
137137

138+
/**
139+
* @name iterators
140+
* @memberof stdlib
141+
* @readonly
142+
* @type {Namespace}
143+
* @see {@link module:@stdlib/iter}
144+
*/
145+
setReadOnly( stdlib, 'iterators', require( '@stdlib/iter' ) );
146+
138147
/**
139148
* @name math
140149
* @memberof stdlib

lib/node_modules/@stdlib/utils/iterators/README.md renamed to lib/node_modules/@stdlib/iter/README.md

Lines changed: 2 additions & 2 deletions

lib/node_modules/@stdlib/utils/iterators/any-by/README.md renamed to lib/node_modules/@stdlib/iter/any-by/README.md

Lines changed: 2 additions & 2 deletions

lib/node_modules/@stdlib/utils/iterators/any-by/benchmark/benchmark.js renamed to lib/node_modules/@stdlib/iter/any-by/benchmark/benchmark.js

File renamed without changes.

lib/node_modules/@stdlib/utils/iterators/any-by/docs/repl.txt renamed to lib/node_modules/@stdlib/iter/any-by/docs/repl.txt

File renamed without changes.

lib/node_modules/@stdlib/utils/iterators/any-by/examples/index.js renamed to lib/node_modules/@stdlib/iter/any-by/examples/index.js

File renamed without changes.

lib/node_modules/@stdlib/utils/iterators/any-by/lib/index.js renamed to lib/node_modules/@stdlib/iter/any-by/lib/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@
2121
/**
2222
* Test whether at least one iterated value passes a test implemented by a predicate function.
2323
*
24-
* @module @stdlib/utils/iterators/any-by
24+
* @module @stdlib/iter/any-by
2525
*
2626
* @example
2727
* var array2iterator = require( '@stdlib/array/to-iterator' );
28-
* var iterAnyBy = require( '@stdlib/utils/iterators/any-by' );
28+
* var iterAnyBy = require( '@stdlib/iter/any-by' );
2929
*
3030
* function predicate( v ) {
3131
* return ( v === 1 );

lib/node_modules/@stdlib/utils/iterators/any-by/lib/main.js renamed to lib/node_modules/@stdlib/iter/any-by/lib/main.js

File renamed without changes.

lib/node_modules/@stdlib/utils/iterators/any-by/package.json renamed to lib/node_modules/@stdlib/iter/any-by/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@stdlib/utils/iterators/any-by",
2+
"name": "@stdlib/iter/any-by",
33
"version": "0.0.0",
44
"description": "Test whether at least one iterated value passes a test implemented by a predicate function.",
55
"license": "Apache-2.0",

lib/node_modules/@stdlib/utils/iterators/any-by/test/test.js renamed to lib/node_modules/@stdlib/iter/any-by/test/test.js

File renamed without changes.

0 commit comments

Comments
 (0)