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