BadMutable
Day.js está diseñado para ser inmutable, sin embargo, con el fin de hacerlo totalmente compatible con moment.js. en algunos proyectos antiguos introdujimos un plugin 🚨 BadMutable 🚨 para hacer a Day.js mutable.
This is NOT good and NOT recommended for most projects.
Con este plugin habilitado, todos los setters actualizarán la instancia en sí.
var badMutable = require("dayjs/plugin/badMutable");
// import badMutable from 'dayjs/plugin/badMutable' // ES 2015
dayjs.extend(badMutable);
// with 🚨 BadMutable 🚨 plugin
const today = dayjs();
today.add(1, "day");
console.log(today); // update itself, value will be tomorrow