
| Type of contact | Data |
|---|---|
| MTS (Viber, Telegram): | +375295465422 |
| A1: | +375447337462 |
| Discord: | shinoby |
| MS Teams: | jshinoby |
I work at BTI as a C# developer, but I like FrontEnd. I did my first job in 2020 (web page). It was homework for the GeekBrains courses, and it was awesome. Today I have a goal to improve my skills and I went to the Rolling Scopes course. I want to work for big company.
| My skils | Level (0-9) |
|---|---|
| HTML/CSS, HTML5/CSS3 | 8 |
| JavaScript | 8 |
| Angular v.16-20 | 7 |
| TypeScript | 7 |
| RxJs | 6 |
| NgRx | 6 |
| GitHub, GitLab, Bitbucket | 8 |
| Figma, Zeplin, Photoshop | 8 |
async function parseXML(filePath) {
try {
// Читаем XML файл
const xmlData = fs.readFileSync(filePath, 'utf8');
// Создаем новый парсер
const parser = new xml2js.Parser({
explicitArray: false, // Отключает создание массивов для одиночных элементов
trim: true // Удаляет пробелы
});
// Парсим XML
const result = await parser.parseStringPromise(xmlData);
return result;
} catch (error) {
console.error('Ошибка при парсинге XML:', error);
throw error;
}
}
A2-B1