/*! * 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) { factory(exports); // commonjs } else { var mustache = {}; factory(mustache); if (typeof define === "function" && define.amd) { define(mustache); // amd } else { root.mustache = mustache; //