/
denishm116
/
test-task
Обзор
Документация
Войти
/
denishm116
/
test-task
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
utils/date.js
9 строк
234 B
Denis Khmelivsky
MVP без валидыции и обработки дат
06 мар 2024, 18:06
06 мар 2024, 18:06
3ae9220
Код
Авторство
О чём код?
function join(date, options, separator) { function format(option) { let formatter = new Intl.DateTimeFormat("en", option); return formatter.format(date); } return options.map(format).join(separator); } export { join };