sk-js
Version:
JavaScript for ShaneKing
37 lines (29 loc) • 772 B
JavaScript
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
import CryptoJS from 'crypto-js';
import $ from 'jquery';
import Cookies from 'js-cookie';
import md5 from 'js-md5';
import _ from 'lodash';
import moment from 'moment';
var Proxy0 = function Proxy0() {
_classCallCheck(this, Proxy0);
};
Proxy0.CryptoJS = CryptoJS;
Proxy0.$ = $;
Proxy0.Cookies = Cookies;
Proxy0.md5 = md5;
Proxy0._ = _;
Proxy0.moment = moment;
Proxy0.$Any = function (any) {
return $(any);
};
Proxy0.md5Any = function (any) {
return md5(any);
};
Proxy0._Any = function (any) {
return _(any);
};
Proxy0.momentAny = function (any) {
return moment(any);
};
export { Proxy0 as default };