mirror of
https://github.com/nodejs/node.git
synced 2025-04-30 23:56:58 +00:00

PR-URL: https://github.com/nodejs/node/pull/21518 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Anna Henningsen <anna@addaleax.net>
17 lines
378 B
JavaScript
17 lines
378 B
JavaScript
'use strict';
|
|
|
|
// node::NewContext calls this script
|
|
|
|
(function(global) {
|
|
// https://github.com/nodejs/node/issues/14909
|
|
delete global.Intl.v8BreakIterator;
|
|
|
|
// https://github.com/nodejs/node/issues/21219
|
|
Object.defineProperty(global.Atomics, 'notify', {
|
|
value: global.Atomics.wake,
|
|
writable: true,
|
|
enumerable: false,
|
|
configurable: true,
|
|
});
|
|
}(this));
|