如何从 Luxon DateTime 对象获取时间戳?

How to get the timestamp from a Luxon DateTime object?

如何从 luxon dateTime 对象获取时间戳?

例如?

const { DateTime } = require("luxon");

date = DateTime.now().setZone('utc');
date.endOf('day);

console.log(date.???) // should give something like 1629399474922

这应该等同于 javascript 的 Date.getTime() 函数。

Luxon 文档对此出奇地沉默,但在 some digging 之后我终于找到了它:


date.toMillis(); 
// or 
date.valueOf();