All Downloads are FREE. Search and download functionalities are using the official Maven repository.

package.internals.array-buffer-not-detached.js Maven / Gradle / Ivy

The newest version!
'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;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy