isMoment()


moment.isMoment(obj);

要检查变量是否为 moment 对象,则使用 moment.isMoment()

moment.isMoment() // false
moment.isMoment(new Date()) // false
moment.isMoment(moment()) // true

2.11.0 版本开始,还可以通过 instanceof 运算符检测 moment 对象:

moment() instanceof moment // true
moment.isMoment(obj);

To check if a variable is a moment object, use moment.isMoment().

moment.isMoment() // false
moment.isMoment(new Date()) // false
moment.isMoment(moment()) // true

From version 2.11.0, you can also test for a moment object by instanceof operator:

moment() instanceof moment // true