primer cambio

This commit is contained in:
beseira13
2026-01-19 12:12:38 -03:00
parent 5f59dba52d
commit 44990f015a
4759 changed files with 588702 additions and 0 deletions

21
node_modules/sequelize/lib/dialects/parserStore.js generated vendored Normal file
View File

@@ -0,0 +1,21 @@
"use strict";
const stores = /* @__PURE__ */ new Map();
module.exports = (dialect) => {
if (!stores.has(dialect)) {
stores.set(dialect, /* @__PURE__ */ new Map());
}
return {
clear() {
stores.get(dialect).clear();
},
refresh(dataType) {
for (const type of dataType.types[dialect]) {
stores.get(dialect).set(type, dataType.parse);
}
},
get(type) {
return stores.get(dialect).get(type);
}
};
};
//# sourceMappingURL=parserStore.js.map