/*! * mustache.js - Logic-less {{mustache}} templates with JavaScript * http://github.com/janl/mustache.js */ /*global define: false*/ var Mustache; (function (exports) { if (typeof module !== "undefined") { module.exports = exports; // CommonJS } else if (typeof define === "function") { define(exports); // AMD } else { Mustache = exports; //