update v1.0.5.1

This commit is contained in:
sujitprasad
2016-01-27 19:46:55 +05:30
parent 366acf316e
commit b1d1ebbbef
699 changed files with 148371 additions and 1404 deletions

View File

@@ -0,0 +1,7 @@
/*global define:false*/
import moment from "./moment";
define("moment", [], function () {
return moment;
});

View File

@@ -0,0 +1,7 @@
/*global define:false*/
import moment from "./moment";
define([], function () {
return moment;
});

View File

@@ -0,0 +1,5 @@
/*global window:false*/
import moment from "./moment";
window.moment = moment;

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';

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';