Skip to content

Commit 25d6d74

Browse files
committed
Update namespace
1 parent 4c8bd66 commit 25d6d74

File tree

23 files changed

+73
-11
lines changed

23 files changed

+73
-11
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,6 +1194,7 @@ bifurcateBy,"@stdlib/utils/bifurcate-by"
11941194
bifurcateByAsync,"@stdlib/utils/async/bifurcate-by"
11951195
bifurcateIn,"@stdlib/utils/bifurcate-in"
11961196
bifurcateOwn,"@stdlib/utils/bifurcate-own"
1197+
BigInt,"@stdlib/bigint/ctor"
11971198
binomialTest,"@stdlib/stats/binomial-test"
11981199
Buffer,"@stdlib/buffer/ctor"
11991200
buffer2json,"@stdlib/buffer/to-json"
@@ -1400,6 +1401,7 @@ HARRISON_BOSTON_HOUSE_PRICES_CORRECTED,"@stdlib/datasets/harrison-boston-house-p
14001401
hasArrayBufferSupport,"@stdlib/assert/has-arraybuffer-support"
14011402
hasAsyncAwaitSupport,"@stdlib/assert/has-async-await-support"
14021403
hasAsyncIteratorSymbolSupport,"@stdlib/assert/has-async-iterator-symbol-support"
1404+
hasBigIntSupport,"@stdlib/assert/has-bigint-support"
14031405
hasClassSupport,"@stdlib/assert/has-class-support"
14041406
hasDataViewSupport,"@stdlib/assert/has-dataview-support"
14051407
hasDefinePropertiesSupport,"@stdlib/assert/has-define-properties-support"
@@ -1612,6 +1614,7 @@ isArrayLikeObject,"@stdlib/assert/is-array-like-object"
16121614
isASCII,"@stdlib/assert/is-ascii"
16131615
isBetween,"@stdlib/assert/is-between"
16141616
isBetweenArray,"@stdlib/assert/is-between-array"
1617+
isBigInt,"@stdlib/assert/is-bigint"
16151618
isBinaryString,"@stdlib/assert/is-binary-string"
16161619
isBoolean,"@stdlib/assert/is-boolean"
16171620
isBooleanArray,"@stdlib/assert/is-boolean-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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,6 +1194,7 @@ bifurcateBy,"bifurcate,groupBy"
11941194
bifurcateByAsync,"bifurcateBy,groupByAsync"
11951195
bifurcateIn,"bifurcate,bifurcateBy,bifurcateOwn,groupIn"
11961196
bifurcateOwn,"bifurcate,bifurcateBy,bifurcateIn,groupOwn"
1197+
BigInt,""
11971198
binomialTest,""
11981199
Buffer,"ArrayBuffer"
11991200
buffer2json,"typedarray2json,reviveBuffer"
@@ -1400,6 +1401,7 @@ HARRISON_BOSTON_HOUSE_PRICES_CORRECTED,"HARRISON_BOSTON_HOUSE_PRICES,PACE_BOSTON
14001401
hasArrayBufferSupport,"hasFloat32ArraySupport,hasFloat64ArraySupport,hasInt16ArraySupport,hasInt32ArraySupport,hasInt8ArraySupport,hasNodeBufferSupport,hasSharedArrayBufferSupport,hasUint16ArraySupport,hasUint32ArraySupport,hasUint8ArraySupport,hasUint8ClampedArraySupport"
14011402
hasAsyncAwaitSupport,""
14021403
hasAsyncIteratorSymbolSupport,"hasIteratorSymbolSupport,hasSymbolSupport"
1404+
hasBigIntSupport,""
14031405
hasClassSupport,""
14041406
hasDataViewSupport,"hasArrayBufferSupport"
14051407
hasDefinePropertiesSupport,"hasDefinePropertySupport"
@@ -1612,6 +1614,7 @@ isArrayLikeObject,"isArray,isArrayLike"
16121614
isASCII,"isString"
16131615
isBetween,"isBetweenArray"
16141616
isBetweenArray,"isBetween"
1617+
isBigInt,""
16151618
isBinaryString,"isString"
16161619
isBoolean,""
16171620
isBooleanArray,""

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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,6 +1194,7 @@ bifurcateBy
11941194
bifurcateByAsync
11951195
bifurcateIn
11961196
bifurcateOwn
1197+
BigInt
11971198
binomialTest
11981199
Buffer
11991200
buffer2json
@@ -1400,6 +1401,7 @@ HARRISON_BOSTON_HOUSE_PRICES_CORRECTED
14001401
hasArrayBufferSupport
14011402
hasAsyncAwaitSupport
14021403
hasAsyncIteratorSymbolSupport
1404+
hasBigIntSupport
14031405
hasClassSupport
14041406
hasDataViewSupport
14051407
hasDefinePropertiesSupport
@@ -1612,6 +1614,7 @@ isArrayLikeObject
16121614
isASCII
16131615
isBetween
16141616
isBetweenArray
1617+
isBigInt
16151618
isBinaryString
16161619
isBoolean
16171620
isBooleanArray

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12278,6 +12278,14 @@ ns.push({
1227812278
]
1227912279
});
1228012280

12281+
ns.push({
12282+
'alias': 'BigInt',
12283+
'path': '@stdlib/bigint/ctor',
12284+
'value': require( '@stdlib/bigint/ctor' ),
12285+
'type': 'Function',
12286+
'related': []
12287+
});
12288+
1228112289
ns.push({
1228212290
'alias': 'binomialTest',
1228312291
'path': '@stdlib/stats/binomial-test',

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,14 @@ ns.push({
107107
]
108108
});
109109

110+
ns.push({
111+
'alias': 'hasBigIntSupport',
112+
'path': '@stdlib/assert/has-bigint-support',
113+
'value': require( '@stdlib/assert/has-bigint-support' ),
114+
'type': 'Function',
115+
'related': []
116+
});
117+
110118
ns.push({
111119
'alias': 'hasClassSupport',
112120
'path': '@stdlib/assert/has-class-support',

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2139,6 +2139,14 @@ ns.push({
21392139
]
21402140
});
21412141

2142+
ns.push({
2143+
'alias': 'isBigInt',
2144+
'path': '@stdlib/assert/is-bigint',
2145+
'value': require( '@stdlib/assert/is-bigint' ),
2146+
'type': 'Function',
2147+
'related': []
2148+
});
2149+
21422150
ns.push({
21432151
'alias': 'isBinaryString',
21442152
'path': '@stdlib/assert/is-binary-string',

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,6 +1194,7 @@
11941194
"@stdlib/utils/async/bifurcate-by",bifurcateByAsync
11951195
"@stdlib/utils/bifurcate-in",bifurcateIn
11961196
"@stdlib/utils/bifurcate-own",bifurcateOwn
1197+
"@stdlib/bigint/ctor",BigInt
11971198
"@stdlib/stats/binomial-test",binomialTest
11981199
"@stdlib/buffer/ctor",Buffer
11991200
"@stdlib/buffer/to-json",buffer2json
@@ -1400,6 +1401,7 @@
14001401
"@stdlib/assert/has-arraybuffer-support",hasArrayBufferSupport
14011402
"@stdlib/assert/has-async-await-support",hasAsyncAwaitSupport
14021403
"@stdlib/assert/has-async-iterator-symbol-support",hasAsyncIteratorSymbolSupport
1404+
"@stdlib/assert/has-bigint-support",hasBigIntSupport
14031405
"@stdlib/assert/has-class-support",hasClassSupport
14041406
"@stdlib/assert/has-dataview-support",hasDataViewSupport
14051407
"@stdlib/assert/has-define-properties-support",hasDefinePropertiesSupport
@@ -1612,6 +1614,7 @@
16121614
"@stdlib/assert/is-ascii",isASCII
16131615
"@stdlib/assert/is-between",isBetween
16141616
"@stdlib/assert/is-between-array",isBetweenArray
1617+
"@stdlib/assert/is-bigint",isBigInt
16151618
"@stdlib/assert/is-binary-string",isBinaryString
16161619
"@stdlib/assert/is-boolean",isBoolean
16171620
"@stdlib/assert/is-boolean-array",isBooleanArray

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

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

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1194,6 +1194,7 @@
11941194
"@stdlib/utils/async/bifurcate-by","@stdlib/utils/bifurcate-by,@stdlib/utils/async/group-by"
11951195
"@stdlib/utils/bifurcate-in","@stdlib/utils/bifurcate,@stdlib/utils/bifurcate-by,@stdlib/utils/bifurcate-own,@stdlib/utils/group-in"
11961196
"@stdlib/utils/bifurcate-own","@stdlib/utils/bifurcate,@stdlib/utils/bifurcate-by,@stdlib/utils/bifurcate-in,@stdlib/utils/group-own"
1197+
"@stdlib/bigint/ctor",""
11971198
"@stdlib/stats/binomial-test",""
11981199
"@stdlib/buffer/ctor","@stdlib/array/buffer"
11991200
"@stdlib/buffer/to-json","@stdlib/array/to-json,@stdlib/buffer/reviver"
@@ -1400,6 +1401,7 @@
14001401
"@stdlib/assert/has-arraybuffer-support","@stdlib/assert/has-float32array-support,@stdlib/assert/has-float64array-support,@stdlib/assert/has-int16array-support,@stdlib/assert/has-int32array-support,@stdlib/assert/has-int8array-support,@stdlib/assert/has-node-buffer-support,@stdlib/assert/has-sharedarraybuffer-support,@stdlib/assert/has-uint16array-support,@stdlib/assert/has-uint32array-support,@stdlib/assert/has-uint8array-support,@stdlib/assert/has-uint8clampedarray-support"
14011402
"@stdlib/assert/has-async-await-support",""
14021403
"@stdlib/assert/has-async-iterator-symbol-support","@stdlib/assert/has-iterator-symbol-support,@stdlib/assert/has-symbol-support"
1404+
"@stdlib/assert/has-bigint-support",""
14031405
"@stdlib/assert/has-class-support",""
14041406
"@stdlib/assert/has-dataview-support","@stdlib/assert/has-arraybuffer-support"
14051407
"@stdlib/assert/has-define-properties-support","@stdlib/assert/has-define-property-support"
@@ -1612,6 +1614,7 @@
16121614
"@stdlib/assert/is-ascii","@stdlib/assert/is-string"
16131615
"@stdlib/assert/is-between","@stdlib/assert/is-between-array"
16141616
"@stdlib/assert/is-between-array","@stdlib/assert/is-between"
1617+
"@stdlib/assert/is-bigint",""
16151618
"@stdlib/assert/is-binary-string","@stdlib/assert/is-string"
16161619
"@stdlib/assert/is-boolean",""
16171620
"@stdlib/assert/is-boolean-array",""

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

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

lib/node_modules/@stdlib/repl/code-blocks/data/data.csv

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2203,6 +2203,10 @@ curryRight,"function add( x, y ) { return x + y; };\nvar f = curryRight( add );\
22032203
cwd,"var dir = cwd()\n"
22042204
DALE_CHALL_NEW,"var list = DALE_CHALL_NEW()\n"
22052205
datasets,"var out = datasets( 'MONTH_NAMES_EN' )\nvar opts = { 'data': 'cities' };\nout = datasets( 'MINARD_NAPOLEONS_MARCH', opts )\n"
2206+
DataView,"var buf = new ArrayBuffer( 5 )\nvar dv = new DataView( buf )\n"
2207+
DataView.prototype.buffer,"var buf1 = new ArrayBuffer( 5 );\nvar dv = new DataView( buf1 );\nvar buf2 = dv.buffer\nvar b = ( buf1 === buf2 )\n"
2208+
DataView.prototype.byteLength,"var buf = new ArrayBuffer( 5 );\nvar dv = new DataView( buf );\ndv.byteLength\n"
2209+
DataView.prototype.byteOffset,"var buf = new ArrayBuffer( 5 );\nvar dv = new DataView( buf, 2 );\ndv.byteLength\ndv.byteOffset\n"
22062210
dayOfQuarter,"var day = dayOfQuarter()\nday = dayOfQuarter( new Date() )\nday = dayOfQuarter( 12, 31, 2017 )\nday = dayOfQuarter( 'dec', 31, 2017 )\nday = dayOfQuarter( 'december', 31, 2017 )\n"
22072211
dayOfYear,"var day = dayOfYear()\nday = dayOfYear( new Date() )\nday = dayOfYear( 12, 31, 2016 )\nday = dayOfYear( 'dec', 31, 2016 )\nday = dayOfYear( 'december', 31, 2016 )\n"
22082212
daysInMonth,"var num = daysInMonth()\nnum = daysInMonth( 2 )\nnum = daysInMonth( 2, 2016 )\nnum = daysInMonth( 2, 2017 )\nnum = daysInMonth( 'feb', 2016 )\nnum = daysInMonth( 'february', 2016 )\n"
@@ -2803,6 +2807,7 @@ isCubeNumber.isPrimitive,"var bool = isCubeNumber.isPrimitive( 8.0 )\nbool = isC
28032807
isCubeNumber.isObject,"var bool = isCubeNumber.isObject( 8.0 )\nbool = isCubeNumber.isObject( new Number( 8.0 ) )\n"
28042808
isDataProperty,"var obj = { 'boop': true };\nvar desc = {};\ndesc.configurable = false;\ndesc.enumerable = false;\ndesc.get = function getter() { return 'beep'; };\ndefineProperty( obj, 'beep', desc );\nvar bool = isDataProperty( obj, 'boop' )\nbool = isDataProperty( obj, 'beep' )\n"
28052809
isDataPropertyIn,"var obj = { 'boop': true };\nvar desc = {};\ndesc.configurable = false;\ndesc.enumerable = false;\ndesc.get = function getter() { return 'beep'; };\ndefineProperty( obj, 'beep', desc );\nvar bool = isDataPropertyIn( obj, 'boop' )\nbool = isDataPropertyIn( obj, 'beep' )\n"
2810+
isDataView,"var buf = new ArrayBuffer( 10 );\nvar bool = isDataView( new DataView( buf ) )\nbool = isDataView( [] )\n"
28062811
isDateObject,"var bool = isDateObject( new Date() )\nbool = isDateObject( '2017-01-01' )\n"
28072812
isDigitString,"var bool = isDigitString( '0123456789' )\nbool = isDigitString( 'abcdef' )\nbool = isDigitString( '0xff' )\nbool = isDigitString( '' )\n"
28082813
isEmailAddress,"var bool = isEmailAddress( 'beep@boop.com' )\nbool = isEmailAddress( 'beep' )\nbool = isEmailAddress( null )\n"

lib/node_modules/@stdlib/repl/code-blocks/data/data.json

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

0 commit comments

Comments
 (0)