Sebastian Kippe ddd4f87799 Base functionality
Does everything except actually creating kredits proposals.
2017-05-02 17:06:04 +02:00

15 lines
274 B
JavaScript

'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;