VUE_GabenParadise/node_modules/encoding/lib/iconv-loader.js

15 lines
274 B
JavaScript
Raw Normal View History

2020-08-10 12:35:19 +00:00
'use strict';
var iconv_package;
var Iconv;
try {
// this is to fool browserify so it doesn't try (in vain) to install iconv.
iconv_package = 'iconv';
Iconv = require(iconv_package).Iconv;
} catch (E) {
// node-iconv not present
}
module.exports = Iconv;