mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
d2d32ea5a2
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>
15 lines
465 B
JavaScript
15 lines
465 B
JavaScript
// Flags: --no-warnings --pending-deprecation
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
const Buffer = require('buffer').Buffer;
|
|
|
|
process.on('warning', common.mustNotCall('A warning should not be emitted'));
|
|
|
|
// With the --pending-deprecation flag, the deprecation warning for
|
|
// new Buffer() should not be emitted when Uint8Array methods are called.
|
|
|
|
Buffer.from('abc').map((i) => i);
|
|
Buffer.from('abc').filter((i) => i);
|
|
Buffer.from('abc').slice(1, 2);
|