Tim van der Lippe | bc3a0b7 | 2021-11-08 15:22:37 | [diff] [blame] | 1 | 'use strict'; |
2 | |||||
3 | var SLOT = require('internal-slot'); | ||||
4 | var keptObjects = []; | ||||
5 | |||||
6 | // https://ecma-international.org/ecma-262/12.0/#sec-clear-kept-objects | ||||
7 | |||||
8 | module.exports = function ClearKeptObjects() { | ||||
9 | keptObjects.length = 0; | ||||
10 | }; | ||||
11 | |||||
12 | SLOT.set(module.exports, '[[es-abstract internal: KeptAlive]]', keptObjects); |