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