mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-20 10:08:35 +00:00
9 lines
256 B
JavaScript
Vendored
9 lines
256 B
JavaScript
Vendored
"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");
|
|
};
|