标签: javascript momentjs
使用moment,我需要格式化一个带有时间戳的变量。它可以是Unix时间戳,例如1555615058或ISO时间戳,例如2019-04-18T19:17:38+00:00。
moment
1555615058
2019-04-18T19:17:38+00:00
我不知道它将以第一种还是第二种格式传递。
我需要能够识别第一个是Unix,因此我可以使用moment.unix(timestamp).format()
moment.unix(timestamp).format()
是否有一种moment知道字符串是否是Unix时间戳的方法?