diff --git a/mustache.js b/mustache.js index cfb25e6..ff396e7 100644 --- a/mustache.js +++ b/mustache.js @@ -5,26 +5,16 @@ /*global define: false*/ -(function (root, factory) { +(function (root, mustache) { if (typeof exports === "object" && exports) { - module.exports = factory; // CommonJS + module.exports = mustache; // CommonJS } else if (typeof define === "function" && define.amd) { - define(factory); // AMD + define(mustache); // AMD } else { - root.Mustache = factory; //