UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

19 lines (12 loc) 282 B
'use strict'; var Buffer = require('../../').Buffer; var assert = require('assert'); assert.doesNotThrow(function() { Buffer.allocUnsafe(10); }); assert.throws(function() { Buffer.from(10, 'hex'); }); assert.doesNotThrow(function() { Buffer.from('deadbeaf', 'hex'); });