diff options
Diffstat (limited to 'library/moment/templates/amd.js')
-rw-r--r-- | library/moment/templates/amd.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/library/moment/templates/amd.js b/library/moment/templates/amd.js new file mode 100644 index 000000000..847bcefa8 --- /dev/null +++ b/library/moment/templates/amd.js @@ -0,0 +1,7 @@ +/*global define:false*/ + +import moment from "./moment"; + +define([], function () { + return moment; +}); |