Newer
Older
2022-autumn-study / node_modules / es5-ext / iterable / validate-object.js
@ItoRino ItoRino on 4 Oct 2022 256 bytes first commit
"use strict";

var isObject = require("../object/is-object")
  , is       = require("./is");

module.exports = function (value) {
	if (is(value) && isObject(value)) return value;
	throw new TypeError(value + " is not an iterable or array-like object");
};