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

node_modules.core-js.modules._validate-collection.js Maven / Gradle / Ivy

The newest version!
var isObject = require('./_is-object');
module.exports = function (it, TYPE) {
  if (!isObject(it) || it._t !== TYPE) throw TypeError('Incompatible receiver, ' + TYPE + ' required!');
  return it;
};




© 2015 - 2024 Weber Informatics LLC | Privacy Policy