mirror of
https://github.com/wishthis/wishthis.git
synced 2026-01-20 21:19:01 -05:00
10 lines
256 B
JavaScript
10 lines
256 B
JavaScript
"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");
|
|
};
|