UNPKG
moment
Version:
latest (2.30.1)
2.30.1
2.30.0
2.29.4
2.29.3
2.29.2
2.29.1
2.29.0
2.28.0
2.27.0
2.26.0
2.25.3
2.25.2
2.25.1
2.25.0
2.24.0
2.23.0
2.22.2
2.22.1
2.22.0
2.21.0
2.20.1
2.20.0
2.19.4
2.19.3
2.19.2
2.19.1
2.19.0
2.18.1
2.18.0
2.17.1
2.17.0
2.16.0
2.15.2
2.15.1
2.15.0
2.14.1
2.14.0
2.13.0
2.12.0
2.11.2
2.11.1
2.11.0
2.10.6
2.10.5
2.10.3
2.10.2
2.9.0
2.8.4
2.8.3
2.8.2
2.8.1
2.7.0
2.6.0
2.5.1
2.5.0
2.4.0
2.3.1
2.3.0
2.2.1
2.1.0
2.0.0
1.7.2
1.7.1
1.7.0
1.6.2
1.6.1
1.6.0
1.5.1
1.5.0
1.4.0
1.3.0
1.2.0
1.1.1
1.1.0
1.0.1
1.0.0
Parse, validate, manipulate, and display dates
momentjs.com
moment/moment
moment
/
src
/
lib
/
utils
/
is-object.js
9 lines
(8 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
export
default
function
isObject
(
input
) {
// IE8 will treat undefined and null as object if it wasn't for
// input != null
return
( input !=
null
&&
Object
.
prototype
.
toString
.
call
(input) ===
'[object Object]'
); }