mirror of
https://github.com/nodejs/node.git
synced 2025-05-11 01:27:14 +00:00

The pending deprecation warning is off by default. Launch the node process with --pending-deprecation or NODE_PENDING_DEPRECATION=1 env var set. PR-URL: https://github.com/nodejs/node/pull/11968 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
16 lines
565 B
JavaScript
16 lines
565 B
JavaScript
// Flags: --pending-deprecation --no-warnings
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const Buffer = require('buffer').Buffer;
|
|
|
|
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);
|
|
|
|
new Buffer(10);
|