是否 Dayjs
这指示变量是否是 Day.js 对象。
¥This indicates whether a variable is a Day.js object or not.
dayjs.isDayjs(dayjs()) // true
dayjs.isDayjs(new Date()) // false
运算符 instanceof
同样有效:
¥The operator instanceof
works equally well:
dayjs() instanceof dayjs // true