File "is-array.js"
Full Path: /home/cananyalcin/public_html/vendors/moment/src/lib/utils/is-array.js
File size: 140 bytes
MIME-type: text/plain
Charset: utf-8
export default function isArray(input) {
return input instanceof Array || Object.prototype.toString.call(input) === '[object Array]';
}