Brought in another asset for Ray's eye form: moment
[openemr.git] / public / assets / moment-2-13-0 / src / lib / utils / is-array.js
blob2d0e0f3da3d70f6e0110bad036462bdb1098e1c2
1 export default function isArray(input) {
2     return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';