18 lines
441 B
Plaintext
Vendored
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;
|
|
})); |