Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { isBisiesto } from "./core/bisiesto"
import { isHabil } from "./core/diahabil";
import { disgregarFecha } from "./core/disgregarfecha";
import { setFormatoFecha } from "./core/formatearfecha";
import { addDias } from "./core/proximafecha";
import { addDiasHabiles } from "./core/proximafechahabil";
import { restarFechas } from "./core/restarfechas";
import { getUltimoDiaMes } from "./core/ultimodiames";
import { validarFecha } from "./core/validarfecha";
import { getFormatoFecha } from "./core/getformatofecha";
import { addMeses } from "./core/sumarmeses";
import { getDiaHabilSiguiente } from "./core/diahabilsiguiente";
import { CodigoFormatoFecha, FormatoFeriados } from "./constants";
export {disgregarFecha,
getDiaHabilSiguiente,
getUltimoDiaMes,
getFormatoFecha,
setFormatoFecha,
addDiasHabiles,
addDias,
addMeses,
restarFechas,
validarFecha,
isBisiesto,
isHabil
};
export {
CodigoFormatoFecha,
FormatoFeriados
} |