time-to-botec/js/node_modules/@stdlib/fs/read-wasm/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

59 lines
1.2 KiB
Plaintext

{{alias}}( file[, options], clbk )
Asynchronously reads a file as WebAssembly.
The function returns file contents as a Uint8Array.
Parameters
----------
file: string|Buffer|integer
Filename or file descriptor.
options: Object (optional)
Options.
options.flag: string (optional)
Flag. Default: 'r'.
clbk: Function
Callback to invoke upon reading file contents.
Examples
--------
> function onRead( error, data ) {
... if ( error ) {
... console.error( error.message );
... } else {
... console.log( data );
... }
... };
> {{alias}}( './beep/boop.wasm', onRead );
{{alias}}.sync( file[, options] )
Synchronously reads a file as WebAssembly.
Parameters
----------
file: string|Buffer|integer
Filename or file descriptor.
options: Object (optional)
Options.
options.flag: string (optional)
Flag. Default: 'r'.
Returns
-------
out: Error|Uint8Array
File contents.
Examples
--------
> var out = {{alias}}.sync( './beep/boop.wasm' );
See Also
--------