/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/fast-uri/test/util.test.js
23 строки
572 B
1lostsun
initial commit
05 май 2025, 11:35
05 май 2025, 11:35
fe8f535
Код
Авторство
О чём код?
'use strict' const test = require('tape') const { stringArrayToHexStripped } = require('../lib/utils') test('stringArrayToHexStripped', (t) => { const testCases = [ [[['0', '0', '0', '0']], ''], [[['0', '0', '0', '0'], false], ''], [[['0', '0', '0', '0'], true], '0'], [[['0', '1', '0', '0'], false], '100'], [[['1', '0', '0', '0'], false], '1000'], [[['1', '0', '0', '0'], true], '1000'] ] t.plan(testCases.length) testCases.forEach(([input, expected]) => { t.same(stringArrayToHexStripped(input[0], input[1]), expected) }) })