]> git.r.bdr.sh - rbdr/dotfiles/blob
6a35b54a14f6772d18df4b1369ed8893fe906d65
[rbdr/dotfiles] /
1 'use strict';
2
3 var isArrayLike = require('./is-array-like');
4
5 module.exports = function (obj) {
6 if (isArrayLike(obj)) return obj;
7 throw new TypeError(obj + " is not array-like value");
8 };