/
Romenxek
/
Diplom
Обзор
Документация
Войти
/
Romenxek
/
Diplom
Код
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/sequelize/lib/dialects/parserStore.js
21 строка
501 B
Roman
Switched to Sequelize ORM v6
09 фев 2026, 15:21
09 фев 2026, 15:21
42a3951
Код
Авторство
О чём код?
"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