mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
696 B
20 lines
696 B
// Flags: --pending-deprecation --no-warnings
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
|
|
const bufferWarning = 'The Buffer() and new Buffer() constructors are not ' +
|
|
'recommended for use due to security and usability ' +
|
|
'concerns. Please use the new Buffer.alloc(), ' +
|
|
'Buffer.allocUnsafe(), or Buffer.from() construction ' +
|
|
'methods instead.';
|
|
|
|
common.expectWarning('DeprecationWarning', bufferWarning);
|
|
|
|
// This is used to make sure that a warning is only emitted once even though
|
|
// `new Buffer()` is called twice.
|
|
process.on('warning', common.mustCall());
|
|
|
|
new Buffer(10);
|
|
|
|
new Buffer(10);
|
|
|