mirror of https://github.com/webpack/webpack.git
10 lines
157 B
JavaScript
10 lines
157 B
JavaScript
|
"use strict";
|
||
|
|
||
|
module.exports = function supportsTextDecoder() {
|
||
|
try {
|
||
|
return typeof TextDecoder !== "undefined";
|
||
|
} catch (_err) {
|
||
|
return false;
|
||
|
}
|
||
|
};
|