UNPKG

csdsolutions-csdjs

Version:

Libreria per i progetti di CSD Solutions

7 lines 258 B
// Funzione per formattare le date function formatPresetDate(date) { const day = String(date.getDate()).padStart(2, "0"); const month = String(date.getMonth() + 1).padStart(2, "0"); const year = date.getFullYear(); return `${day}/${month}/${year}`; }