nodejs/test/parallel/test-buffer-new.js

12 lines
276 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
assert.throws(() => new Buffer(42, 'utf8'), {
code: 'ERR_INVALID_ARG_TYPE',
name: 'TypeError',
message: 'The "string" argument must be of type string. Received type ' +
'number (42)'
});