mirror of
https://github.com/github/codeql-action.git
synced 2026-01-01 04:00:24 +08: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');
|
|
});
|
|
|