Skip to content

Commit 8e6dd3b

Browse files
committed
Update namespace
1 parent c5715f7 commit 8e6dd3b

File tree

8 files changed

+8
-4
lines changed

8 files changed

+8
-4
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -2600,6 +2600,7 @@ FOURTH_PI,"FOURTH_PI\n"
26002600
FOURTH_ROOT_EPS,"FOURTH_ROOT_EPS\n"
26012601
FRB_SF_WAGE_RIGIDITY,"var data = FRB_SF_WAGE_RIGIDITY()\n"
26022602
fromCodePoint,"var out = fromCodePoint( 9731 )\nout = fromCodePoint( [ 9731 ] )\nout = fromCodePoint( 97, 98, 99 )\nout = fromCodePoint( [ 97, 98, 99 ] )\n"
2603+
Function,"var f = new Function( 'x', 'y', 'return x + y' );\nf( 1, 2 )\n"
26032604
functionName,"var v = functionName( String )\nv = functionName( function foo(){} )\nv = functionName( function(){} )\n"
26042605
functionSequence,"function a( x ) { return 2 * x; };\nfunction b( x ) { return x + 3; };\nfunction c( x ) { return x / 5; };\nvar f = functionSequence( a, b, c );\nvar z = f( 6 )\n"
26052606
functionSequenceAsync,"function a( x, next ) {\nsetTimeout( onTimeout, 0 );\nfunction onTimeout() {\n next( null, 2*x );\n}\n };\nfunction b( x, next ) {\nsetTimeout( onTimeout, 0 );\nfunction onTimeout() {\n next( null, x+3 );\n}\n };\nfunction c( x, next ) {\nsetTimeout( onTimeout, 0 );\nfunction onTimeout() {\n next( null, x/5 );\n}\n };\nvar f = functionSequenceAsync( a, b, c );\nfunction done( error, result ) {\nif ( error ) {\n throw error;\n}\nconsole.log( result );\n };\nf( 6, done )\n"

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

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/info/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2600,6 +2600,7 @@ FOURTH_PI,"\nFOURTH_PI\n One fourth times the mathematical constant `π`.\n"
26002600
FOURTH_ROOT_EPS,"\nFOURTH_ROOT_EPS\n Fourth root of double-precision floating-point epsilon.\n"
26012601
FRB_SF_WAGE_RIGIDITY,"\nFRB_SF_WAGE_RIGIDITY()\n Returns wage rates for U.S. workers that have not changed jobs within the\n year.\n"
26022602
fromCodePoint,"\nfromCodePoint( ...pt:integer )\n Creates a string from a sequence of Unicode code points.\n"
2603+
Function,"\nFunction( [...argNames:any,] body:string )\n Returns a Function object.\n"
26032604
functionName,"\nfunctionName( fcn:Function )\n Returns the name of a function.\n"
26042605
functionSequence,"\nfunctionSequence( ...fcn:Function )\n Returns a pipeline function.\n"
26052606
functionSequenceAsync,"\nfunctionSequenceAsync( ...fcn:Function )\n Returns a pipeline function.\n"

lib/node_modules/@stdlib/repl/info/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/signature/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2625,6 +2625,7 @@ FOURTH_PI,"FOURTH_PI"
26252625
FOURTH_ROOT_EPS,"FOURTH_ROOT_EPS"
26262626
FRB_SF_WAGE_RIGIDITY,"FRB_SF_WAGE_RIGIDITY()"
26272627
fromCodePoint,"fromCodePoint( ...pt )"
2628+
Function,"Function( [...argNames,] body )"
26282629
functionName,"functionName( fcn )"
26292630
functionSequence,"functionSequence( ...fcn )"
26302631
functionSequenceAsync,"functionSequenceAsync( ...fcn )"

lib/node_modules/@stdlib/repl/signature/data/data.json

+1-1
Large diffs are not rendered by default.

lib/node_modules/@stdlib/repl/typed-signature/data/data.csv

+1
Original file line numberDiff line numberDiff line change
@@ -2625,6 +2625,7 @@ FOURTH_PI,"FOURTH_PI"
26252625
FOURTH_ROOT_EPS,"FOURTH_ROOT_EPS"
26262626
FRB_SF_WAGE_RIGIDITY,"FRB_SF_WAGE_RIGIDITY()"
26272627
fromCodePoint,"fromCodePoint( ...pt:integer )"
2628+
Function,"Function( [...argNames:any,] body:string )"
26282629
functionName,"functionName( fcn:Function )"
26292630
functionSequence,"functionSequence( ...fcn:Function )"
26302631
functionSequenceAsync,"functionSequenceAsync( ...fcn:Function )"

lib/node_modules/@stdlib/repl/typed-signature/data/data.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)