mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/Zos.git
synced 2026-06-15 20:16:32 +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');
|
|
});
|
|
|