code from amapei

This commit is contained in:
cagette@ct8
2020-09-26 18:25:18 +00:00
parent 42fe367911
commit 72b4699871
1966 changed files with 220437 additions and 2 deletions
+7
View File
@@ -0,0 +1,7 @@
/*global define:false*/
import moment from "./moment";
define("moment", [], function () {
return moment;
});
+7
View File
@@ -0,0 +1,7 @@
/*global define:false*/
import moment from "./moment";
define([], function () {
return moment;
});
+5
View File
@@ -0,0 +1,5 @@
;(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
global.moment = factory()
}(this, function () { 'use strict';
+5
View File
@@ -0,0 +1,5 @@
/*global window:false*/
import moment from "./moment";
window.moment = moment;
+5
View File
@@ -0,0 +1,5 @@
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../moment')) :
typeof define === 'function' && define.amd ? define(['moment'], factory) :
factory(global.moment)
}(this, function (moment) { 'use strict';
+5
View File
@@ -0,0 +1,5 @@
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(require('../../moment')) :
typeof define === 'function' && define.amd ? define(['../../moment'], factory) :
factory(global.moment)
}(this, function (moment) { 'use strict';