mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 10:58:56 +00:00
12 lines
276 B
JavaScript
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)'
|
|
});
|