UNPKG

gesture-customizer

Version:

Help you customize and manage gesture action in web.

18 lines (14 loc) 316 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isArray = isArray; function isArray(array) { if (Array.isArray) { return Array.isArray(array); } if (array && typeof array.length === 'number' && array.constructor === Array) { return true; } return false; }