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