BigInt 지원 기능
BigInt 지원은 dayjs()
및 dayjs.unix()
API가 BigInt 인수를 사용할 수 있도록 확장하는 기능입니다.
javascript
var bigIntSupport = require('dayjs/plugin/bigIntSupport');
// import bigIntSupport from 'dayjs/plugin/bigIntSupport' // ES 2015
dayjs.extend(bigIntSupport);
dayjs(BigInt(1666310421101));
dayjs.unix(BigInt(1666311003));