Skip to content

Commit b5d7018

Browse files
committed
Update namespace
1 parent 25b349f commit b5d7018

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

lib/node_modules/@stdlib/repl/lib/docs.js

+1
Original file line numberDiff line numberDiff line change
@@ -695,6 +695,7 @@ module.exports = {
695695
"HALF_LN2": "\nHALF_LN2\n One half times the natural logarithm of `2`.\n\n Examples\n --------\n > HALF_LN2\n 3.46573590279972654709e-01\n\n See Also\n --------\n LN2\n",
696696
"HALF_PI": "\nHALF_PI\n One half times the mathematical constant `π`.\n\n Examples\n --------\n > HALF_PI\n 1.5707963267948966\n\n See Also\n --------\n PI\n",
697697
"hasClassSupport": "\nhasClassSupport()\n Tests for native `class` support.\n\n Returns\n -------\n bool: boolean\n Boolean indicating if an environment has native `class` support.\n\n Examples\n --------\n > var bool = hasClassSupport()\n <boolean>\n\n",
698+
"hasFloat32ArraySupport": "\nhasFloat32ArraySupport()\n Tests for native `Float32Array` support.\n\n Returns\n -------\n bool: boolean\n Boolean indicating if an environment has `Float32Array` support.\n\n Examples\n --------\n > var bool = hasFloat32ArraySupport()\n <boolean>\n\n",
698699
"hasFunctionNameSupport": "\nhasFunctionNameSupport()\n Tests for native function `name` support.\n\n Returns\n -------\n bool: boolean\n Boolean indicating if an environment has function `name` support.\n\n Examples\n --------\n > var bool = hasFunctionNameSupport()\n <boolean>\n\n",
699700
"hasGeneratorSupport": "\nhasGeneratorSupport()\n Tests whether an environment supports native generator functions.\n\n Returns\n -------\n bool: boolean\n Boolean indicating if an environment support generator functions.\n\n Examples\n --------\n > var bool = hasGeneratorSupport()\n <boolean>\n\n",
700701
"hasMapSupport": "\nhasMapSupport()\n Tests for native `Map` support.\n\n Returns\n -------\n bool: boolean\n Boolean indicating if an environment has `Map` support.\n\n Examples\n --------\n > var bool = hasMapSupport()\n <boolean>\n\n",

lib/node_modules/@stdlib/repl/lib/examples.js

+1
Original file line numberDiff line numberDiff line change
@@ -695,6 +695,7 @@ module.exports = {
695695
"HALF_LN2": "HALF_LN2\n",
696696
"HALF_PI": "HALF_PI\n",
697697
"hasClassSupport": "bool = hasClassSupport()\n",
698+
"hasFloat32ArraySupport": "bool = hasFloat32ArraySupport()\n",
698699
"hasFunctionNameSupport": "bool = hasFunctionNameSupport()\n",
699700
"hasGeneratorSupport": "bool = hasGeneratorSupport()\n",
700701
"hasMapSupport": "bool = hasMapSupport()\n",

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

+8
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,14 @@ ns.push({
3434
'related': []
3535
});
3636

37+
ns.push({
38+
'alias': 'hasFloat32ArraySupport',
39+
'path': '@stdlib/utils/detect-float32array-support',
40+
'value': require( '@stdlib/utils/detect-float32array-support' ),
41+
'type': 'Function',
42+
'related': []
43+
});
44+
3745
ns.push({
3846
'alias': 'hasFunctionNameSupport',
3947
'path': '@stdlib/utils/detect-function-name-support',

0 commit comments

Comments
 (0)