update v1.0.5.1
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
/*global define:false*/
|
||||
|
||||
import moment from "./moment";
|
||||
|
||||
define("moment", [], function () {
|
||||
return moment;
|
||||
});
|
||||
7
public/lb-faveo/plugins/moment-develop/templates/amd.js
Normal file
7
public/lb-faveo/plugins/moment-develop/templates/amd.js
Normal file
@@ -0,0 +1,7 @@
|
||||
/*global define:false*/
|
||||
|
||||
import moment from "./moment";
|
||||
|
||||
define([], function () {
|
||||
return moment;
|
||||
});
|
||||
@@ -0,0 +1,5 @@
|
||||
/*global window:false*/
|
||||
|
||||
import moment from "./moment";
|
||||
|
||||
window.moment = moment;
|
||||
@@ -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';
|
||||
@@ -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';
|
||||
Reference in New Issue
Block a user