https://momentjs.com/docs/#/displaying/as-iso-string/ [[Moment.js]]で[[ISO-8601]]形式の時刻フォーマット文字列を出力する方法。 ```ts // UTC moment().toISOString() // time zone考慮 moment().toISOString(true) ```