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