zack
feat: πŸš€ Update Chat-nFace configurations
a053984
raw
history blame
No virus
204 Bytes
'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);
};