mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-23 00:45:16 +00:00
19 lines
282 B
JavaScript
19 lines
282 B
JavaScript
'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');
|
|
});
|
|
|