Files
setup-haskell/node_modules/is-arrayish/index.js
Timothy Clem 63b90beb0c npm audit fix
2019-09-30 10:04:01 -07:00

11 lines
204 B
JavaScript

'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);
};