/
githubmirror
/
webpack
Обзор
Документация
Войти
/
githubmirror
/
webpack
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/helpers/supportsTextDecoder.js
9 строк
157 B
Alexander Akait
feat: added support for import file from "./file.ext" with { type: "bytes" } to get the content as `Uint8Array` (#19928)
24 сен 2025, 21:01
Не верифицирован
24 сен 2025, 21:01
f6c3c24
Код
Авторство
О чём код?
"use strict"; module.exports = function supportsTextDecoder() { try { return typeof TextDecoder !== "undefined"; } catch (_err) { return false; } };