/
astafievk
/
source_code
Обзор
Документация
Войти
/
astafievk
/
source_code
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Api/node_modules/sequelize/lib/dialects/parserStore.js
21 строка
501 B
astafievK
source code
21 июн 2024, 21:02
21 июн 2024, 21:02
37a1d03
Код
Авторство
О чём код?
"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