/
eapostnova
/
2026-1--study--simulation-modeling
Обзор
Документация
Войти
/
eapostnova
/
2026-1--study--simulation-modeling
Код
Запросы
1
Задачи
Вики
Пакеты
0
Релизы
3
CI/CD
Аналитика
Безопасность
develop
node_modules/fast-xml-parser/src/v6/valueParsers/booleanParser.js
22 строки
631 B
Елизавета Постнова
chore(site): add changelog
06 мар 2026, 00:34
Верифицирован
06 мар 2026, 00:34
8cca814
Код
Авторство
О чём код?
export default class boolParser{ constructor(trueList, falseList){ if(trueList) this.trueList = trueList; else this.trueList = ["true"]; if(falseList) this.falseList = falseList; else this.falseList = ["false"]; } parse(val){ if (typeof val === 'string') { //TODO: performance: don't convert const temp = val.toLowerCase(); if(this.trueList.indexOf(temp) !== -1) return true; else if(this.falseList.indexOf(temp) !== -1 ) return false; } return val; } }