Files
kotlin-fork/js/js.translator/testData/closure-wrapper.txt
T
2016-11-11 16:26:38 +03:00

16 lines
354 B
Plaintext
Vendored

(function (root, factory) {
if (typeof define === 'function' && define.amd) {
define('kotlin', ['exports'], factory);
}
else if (typeof exports === 'object') {
factory(module.exports);
}
else {
root.kotlin = {};
factory(root.kotlin);
}
}(this, function (Kotlin) {
var _ = Kotlin;
%output%
}));