Files
kotlin-fork/libraries/stdlib/js/src/wrapper.js
T
Ilya Gorbunov 00b23a0fe9 Rearrange kotlin-stdlib-js library sources
Move kotlin.* api inside kotlin directory.
Update copyright paths.
2018-02-26 17:11:08 +03:00

17 lines
367 B
JavaScript

(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;
insertContent();
}));