UNPKG

zater-cep

Version:

ZAter cep correios e via cep

11 lines (8 loc) 204 B
'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); };