rcs-data
Version:
RCS消息数据结构
11 lines • 340 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.DateTime = void 0;
const format = require("date-format");
class DateTime extends Date {
get value() {
return format.asString(format.ISO8601_WITH_TZ_OFFSET_FORMAT, this);
}
}
exports.DateTime = DateTime;
//# sourceMappingURL=DateTime.js.map