2018-11-26 18:50:41 +01:00
|
|
|
// This file is compiled as if it's wrapped in a function with arguments
|
|
|
|
// passed by node::NewContext()
|
|
|
|
/* global global */
|
2018-11-26 14:50:19 +01:00
|
|
|
|
2018-06-25 09:08:27 +02:00
|
|
|
'use strict';
|
|
|
|
|
2018-11-26 14:50:19 +01:00
|
|
|
// https://github.com/nodejs/node/issues/14909
|
2019-03-31 22:02:29 +02:00
|
|
|
if (global.Intl) {
|
|
|
|
delete global.Intl.v8BreakIterator;
|
|
|
|
}
|
2018-06-25 09:08:27 +02:00
|
|
|
|
2018-11-26 14:50:19 +01:00
|
|
|
// https://github.com/nodejs/node/issues/21219
|
2019-03-31 22:02:29 +02:00
|
|
|
if (global.Atomics) {
|
|
|
|
delete global.Atomics.wake;
|
2018-11-26 14:50:19 +01:00
|
|
|
}
|