UNPKG

411 BJavaScriptView Raw
1"use strict";
2/**
3 * Prototype 对象
4 */
5var Prototype = {
6 /**
7 * 版本
8 */
9 version: "__VERSION__",
10 /**
11 * 空方法
12 *
13 * @return void
14 */
15 emptyFunction: function () {
16 },
17 /**
18 *
19 * @param x 任意参数
20 * @return 任意值
21 */
22 K: function (x) {
23 return x;
24 }
25};
26window.Prototype = Prototype;
27//# sourceMappingURL=prototype.js.map
\No newline at end of file