mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-21 18:48:37 +00:00
8 lines
190 B
JavaScript
Vendored
8 lines
190 B
JavaScript
Vendored
"use strict";
|
|
|
|
var isArrayLike = require("./is-array-like");
|
|
|
|
module.exports = function (obj) {
|
|
if (isArrayLike(obj)) return obj;
|
|
throw new TypeError(obj + " is not array-like value");
|
|
};
|