diff -r a41d76310c7d -r d8b6ea26da6e wwwcorpus/libs/mustache.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wwwcorpus/libs/mustache.js Tue Mar 18 14:08:02 2014 +0100 @@ -0,0 +1,536 @@ +/*! + * 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; //