Frontend/25_01_07/mai/node_modules/es-abstract/2021/AddToKeptObjects.js
szabomarton 7f4a15b9c3 asd
2025-01-28 11:38:27 +01:00

22 lines
594 B
JavaScript

'use strict';
var callBound = require('call-bound');
var SLOT = require('internal-slot');
var $TypeError = require('es-errors/type');
var ClearKeptObjects = require('./ClearKeptObjects');
var isObject = require('../helpers/isObject');
var $push = callBound('Array.prototype.push');
// https://262.ecma-international.org/12.0/#sec-addtokeptobjects
module.exports = function AddToKeptObjects(object) {
if (!isObject(object)) {
throw new $TypeError('Assertion failed: `object` must be an Object');
}
$push(SLOT.get(ClearKeptObjects, '[[es-abstract internal: KeptAlive]]'), object);
};