UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

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