webpack/test/helpers/supportsTextDecoder.js

10 lines
157 B
JavaScript

"use strict";
module.exports = function supportsTextDecoder() {
try {
return typeof TextDecoder !== "undefined";
} catch (_err) {
return false;
}
};