0.2.1 • Published 2 months ago

@stdlib/buffer-reviver v0.2.1

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
2 months ago

reviveBuffer

NPM version Build Status Coverage Status

Revive a JSON-serialized Buffer.

Installation

npm install @stdlib/buffer-reviver

Usage

var reviveBuffer = require( '@stdlib/buffer-reviver' );

reviveBuffer( key, value )

Revives a JSON-serialized Buffer.

var parseJSON = require( '@stdlib/utils-parse-json' );

var str = '{"type":"Buffer","data":[5,3]}';

var buf = parseJSON( str, reviveBuffer );
// returns <Buffer>[ 5, 3 ]

For details on the JSON serialization format, see @stdlib/buffer-to-json.

Examples

var array2buffer = require( '@stdlib/buffer-from-array' );
var parseJSON = require( '@stdlib/utils-parse-json' );
var buffer2json = require( '@stdlib/buffer-to-json' );
var reviveBuffer = require( '@stdlib/buffer-reviver' );

var buf = array2buffer( [ 1, 2 ] );
var str = JSON.stringify( buffer2json( buf ) );
console.log( str );
// => '{"type":"Buffer","data":[1,2]}'

var out = parseJSON( str, reviveBuffer );
if ( out instanceof Error ) {
    throw out;
}
console.log( out );
// => <Buffer>[ 1, 2 ]

See Also


Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2024. The Stdlib Authors.