Newer
Older
vue-indexer / node_modules / is-arrayish / index.js
@eugene-sukhodolskiy eugene-sukhodolskiy on 24 Sep 204 bytes v1.0
'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);
};