diff options
Diffstat (limited to 'bower_components/moment/src/lib/utils/is-array.js')
| -rw-r--r-- | bower_components/moment/src/lib/utils/is-array.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bower_components/moment/src/lib/utils/is-array.js b/bower_components/moment/src/lib/utils/is-array.js new file mode 100644 index 0000000..46bd6c6 --- /dev/null +++ b/bower_components/moment/src/lib/utils/is-array.js @@ -0,0 +1,3 @@ +export default function isArray(input) { + return Object.prototype.toString.call(input) === '[object Array]'; +} |
