aboutsummaryrefslogtreecommitdiffhomepage
path: root/public/bower_components/moment/src/lib/utils/is-array.js
blob: 2d0e0f3da3d70f6e0110bad036462bdb1098e1c2 (plain) (blame)
1
2
3
export default function isArray(input) {
    return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';
}