Files
kotlin-fork/js/js.translator/testData/closure-wrapper.txt
T
2016-06-27 15:33:28 +03:00

18 lines
441 B
Plaintext
Vendored

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