diff --git a/src/date/index.js b/src/date/index.js index d03673b..279e323 100644 --- a/src/date/index.js +++ b/src/date/index.js @@ -1,18 +1,5 @@ import { TZDateMini } from "./mini.js"; -/** - * UTC date class. It maps getters and setters to corresponding UTC methods, - * forcing all calculations in the UTC time zone. - * - * Combined with date-fns, it allows using the class the same way as - * the original date class. - * - * This complete version provides not only getters, setters, - * and `getTimezoneOffset`, but also the formatter functions, mirroring - * all original `Date` functionality. Use this version when you need to format - * a string or in an environment you don't fully control (a library). - * For a minimal version, see `UTCDateMini`. - */ export class TZDate extends TZDateMini { //#region static