Skip to content

Commit d0ad6f1

Browse files
committed
Update namespace
1 parent 48771af commit d0ad6f1

File tree

3 files changed

+17
-1
lines changed
  • lib/node_modules/@stdlib

3 files changed

+17
-1
lines changed

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

+14
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,20 @@ ns.push({
2727
]
2828
});
2929

30+
ns.push({
31+
'alias': 'allocUnsafe',
32+
'path': '@stdlib/types/buffer/alloc-unsafe',
33+
'value': require( '@stdlib/types/buffer/alloc-unsafe' ),
34+
'type': 'Function',
35+
'related': [
36+
'@stdlib/types/buffer/alloc',
37+
'@stdlib/types/buffer/ctor',
38+
'@stdlib/types/buffer/from-array',
39+
'@stdlib/types/buffer/from-arraybuffer',
40+
'@stdlib/types/buffer/from-buffer'
41+
]
42+
});
43+
3044
ns.push({
3145
'alias': 'ANSCOMBES_QUARTET',
3246
'path': '@stdlib/datasets/anscombes-quartet',

lib/node_modules/@stdlib/repl/code-blocks/lib/db.js

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
module.exports = {
77
"AFINN_111": "list = AFINN_111()\n",
88
"AFINN_96": "list = AFINN_96()\n",
9+
"allocUnsafe": "buf = allocUnsafe( 100 )\n",
910
"ANSCOMBES_QUARTET": "d = ANSCOMBES_QUARTET()\n",
1011
"any": "arr = [ 0, 0, 0, 0, 1 ];\nbool = any( arr )\n",
1112
"anyBy": "function negative( v ) { return ( v < 0 ); };\narr = [ 1, 2, 3, 4, -1 ];\nbool = anyBy( arr, negative )\n",

0 commit comments

Comments
 (0)