mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 14:59:16 +01:00
19 lines
282 B
JavaScript
Vendored
19 lines
282 B
JavaScript
Vendored
'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');
|
|
});
|
|
|