PromoCursed/node_modules/core-js/internals/array-buffer-not-detached.js
2024-08-20 23:25:37 +04:00

10 lines
231 B
JavaScript

'use strict';
var isDetached = require('../internals/array-buffer-is-detached');
var $TypeError = TypeError;
module.exports = function (it) {
if (isDetached(it)) throw new $TypeError('ArrayBuffer is detached');
return it;
};