Preview: index.js
Size: 204 B
/home/byroehnu/.trash/node_modules11/is-arrayish/index.js
'use strict';
module.exports = function isArrayish(obj) {
if (!obj) {
return false;
}
return obj instanceof Array || Array.isArray(obj) ||
(obj.length >= 0 && obj.splice instanceof Function);
};
Directory Contents
Dirs: 0 × Files: 8