Skip to content

Commit b89b220

Browse files
committed
Update namespace
1 parent 2b0cb68 commit b89b220

23 files changed

Lines changed: 79 additions & 20 deletions

File tree

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.csv

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,7 @@ chi2gof,"@stdlib/stats/chi2gof"
818818
circarray2iterator,"@stdlib/array/to-circular-iterator"
819819
circularArrayStream,"@stdlib/streams/node/from-circular-array"
820820
CircularBuffer,"@stdlib/utils/circular-buffer"
821+
close,"@stdlib/fs/close"
821822
CMUDICT,"@stdlib/datasets/cmudict"
822823
complex,"@stdlib/complex/cmplx"
823824
Complex64,"@stdlib/complex/float32"
@@ -1574,6 +1575,7 @@ omit,"@stdlib/utils/omit"
15741575
omitBy,"@stdlib/utils/omit-by"
15751576
onlineBinaryClassification,"@stdlib/ml/online-binary-classification"
15761577
onlineSGDRegression,"@stdlib/ml/online-sgd-regression"
1578+
open,"@stdlib/fs/open"
15771579
openURL,"@stdlib/utils/open-url"
15781580
PACE_BOSTON_HOUSE_PRICES,"@stdlib/datasets/pace-boston-house-prices"
15791581
pad,"@stdlib/string/pad"
@@ -1816,9 +1818,9 @@ SQRT_TWO,"@stdlib/constants/math/float64-sqrt-two"
18161818
SQRT_TWO_PI,"@stdlib/constants/math/float64-sqrt-two-pi"
18171819
SSA_US_BIRTHS_2000_2014,"@stdlib/datasets/ssa-us-births-2000-2014"
18181820
Stack,"@stdlib/utils/stack"
1821+
STANDARD_CARD_DECK,"@stdlib/datasets/standard-card-deck"
18191822
startcase,"@stdlib/string/startcase"
18201823
startsWith,"@stdlib/string/starts-with"
1821-
STANDARD_CARD_DECK,"@stdlib/datasets/standard-card-deck"
18221824
STOPWORDS_EN,"@stdlib/datasets/stopwords-en"
18231825
stridedarray2iterator,"@stdlib/array/to-strided-iterator"
18241826
stridedArrayStream,"@stdlib/streams/node/from-strided-array"

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2related/data/data.csv

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,7 @@ chi2gof,""
818818
circarray2iterator,"array2iterator,stridedarray2iterator"
819819
circularArrayStream,"arrayStream,iteratorStream,stridedArrayStream"
820820
CircularBuffer,"FIFO,Stack"
821+
close,"exists,open,readFile"
821822
CMUDICT,""
822823
complex,"Complex128,Complex64"
823824
Complex64,"complex,Complex128"
@@ -1574,6 +1575,7 @@ omit,"omitBy"
15741575
omitBy,"omit"
15751576
onlineBinaryClassification,"onlineSGDRegression"
15761577
onlineSGDRegression,"onlineBinaryClassification"
1578+
open,"close,exists,readFile"
15771579
openURL,""
15781580
PACE_BOSTON_HOUSE_PRICES,"HARRISON_BOSTON_HOUSE_PRICES,HARRISON_BOSTON_HOUSE_PRICES_CORRECTED"
15791581
pad,"lpad,rpad"
@@ -1724,7 +1726,7 @@ RE_UTF16_SURROGATE_PAIR,"RE_UTF16_UNPAIRED_SURROGATE"
17241726
RE_UTF16_UNPAIRED_SURROGATE,"RE_UTF16_SURROGATE_PAIR"
17251727
RE_WHITESPACE,"isWhitespace"
17261728
readDir,"exists,readFile"
1727-
readFile,"exists,readDir,readJSON,writeFile"
1729+
readFile,"exists,open,readDir,readJSON,writeFile"
17281730
readFileList,""
17291731
readJSON,"readFile"
17301732
readWASM,"readFile"
@@ -1816,9 +1818,9 @@ SQRT_TWO,"LN2"
18161818
SQRT_TWO_PI,"TWO_PI"
18171819
SSA_US_BIRTHS_2000_2014,"CDC_NCHS_US_BIRTHS_1969_1988,CDC_NCHS_US_BIRTHS_1994_2003"
18181820
Stack,"FIFO"
1821+
STANDARD_CARD_DECK,""
18191822
startcase,"lowercase,uppercase"
18201823
startsWith,"endsWith"
1821-
STANDARD_CARD_DECK,""
18221824
STOPWORDS_EN,""
18231825
stridedarray2iterator,"iterator2array,array2iterator"
18241826
stridedArrayStream,"arrayStream"

lib/node_modules/@stdlib/namespace/alias2related/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,7 @@ chi2gof
818818
circarray2iterator
819819
circularArrayStream
820820
CircularBuffer
821+
close
821822
CMUDICT
822823
complex
823824
Complex64
@@ -1574,6 +1575,7 @@ omit
15741575
omitBy
15751576
onlineBinaryClassification
15761577
onlineSGDRegression
1578+
open
15771579
openURL
15781580
PACE_BOSTON_HOUSE_PRICES
15791581
pad
@@ -1816,9 +1818,9 @@ SQRT_TWO
18161818
SQRT_TWO_PI
18171819
SSA_US_BIRTHS_2000_2014
18181820
Stack
1821+
STANDARD_CARD_DECK
18191822
startcase
18201823
startsWith
1821-
STANDARD_CARD_DECK
18221824
STOPWORDS_EN
18231825
stridedarray2iterator
18241826
stridedArrayStream

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,18 @@ ns.push({
149149
]
150150
});
151151

152+
ns.push({
153+
'alias': 'close',
154+
'path': '@stdlib/fs/close',
155+
'value': require( '@stdlib/fs/close' ),
156+
'type': 'Function',
157+
'related': [
158+
'@stdlib/fs/exists',
159+
'@stdlib/fs/open',
160+
'@stdlib/fs/read-file'
161+
]
162+
});
163+
152164
ns.push({
153165
'alias': 'CMUDICT',
154166
'path': '@stdlib/datasets/cmudict',

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

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,18 @@ ns.push({
155155
]
156156
});
157157

158+
ns.push({
159+
'alias': 'open',
160+
'path': '@stdlib/fs/open',
161+
'value': require( '@stdlib/fs/open' ),
162+
'type': 'Function',
163+
'related': [
164+
'@stdlib/fs/close',
165+
'@stdlib/fs/exists',
166+
'@stdlib/fs/read-file'
167+
]
168+
});
169+
158170
ns.push({
159171
'alias': 'openURL',
160172
'path': '@stdlib/utils/open-url',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1188,6 +1188,7 @@ ns.push({
11881188
'type': 'Function',
11891189
'related': [
11901190
'@stdlib/fs/exists',
1191+
'@stdlib/fs/open',
11911192
'@stdlib/fs/read-dir',
11921193
'@stdlib/fs/read-json',
11931194
'@stdlib/fs/write-file'

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.csv

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -818,6 +818,7 @@
818818
"@stdlib/array/to-circular-iterator",circarray2iterator
819819
"@stdlib/streams/node/from-circular-array",circularArrayStream
820820
"@stdlib/utils/circular-buffer",CircularBuffer
821+
"@stdlib/fs/close",close
821822
"@stdlib/datasets/cmudict",CMUDICT
822823
"@stdlib/complex/cmplx",complex
823824
"@stdlib/complex/float32",Complex64
@@ -1574,6 +1575,7 @@
15741575
"@stdlib/utils/omit-by",omitBy
15751576
"@stdlib/ml/online-binary-classification",onlineBinaryClassification
15761577
"@stdlib/ml/online-sgd-regression",onlineSGDRegression
1578+
"@stdlib/fs/open",open
15771579
"@stdlib/utils/open-url",openURL
15781580
"@stdlib/datasets/pace-boston-house-prices",PACE_BOSTON_HOUSE_PRICES
15791581
"@stdlib/string/pad",pad
@@ -1816,9 +1818,9 @@
18161818
"@stdlib/constants/math/float64-sqrt-two-pi",SQRT_TWO_PI
18171819
"@stdlib/datasets/ssa-us-births-2000-2014",SSA_US_BIRTHS_2000_2014
18181820
"@stdlib/utils/stack",Stack
1821+
"@stdlib/datasets/standard-card-deck",STANDARD_CARD_DECK
18191822
"@stdlib/string/startcase",startcase
18201823
"@stdlib/string/starts-with",startsWith
1821-
"@stdlib/datasets/standard-card-deck",STANDARD_CARD_DECK
18221824
"@stdlib/datasets/stopwords-en",STOPWORDS_EN
18231825
"@stdlib/array/to-strided-iterator",stridedarray2iterator
18241826
"@stdlib/streams/node/from-strided-array",stridedArrayStream

0 commit comments

Comments
 (0)