Update Set-implementation-list.md

This commit is contained in:
github-actions 2023-06-24 09:47:29 +00:00
parent 246f5b7b12
commit 6d9845d304
23 changed files with 3549 additions and 0 deletions

13
node_modules/mustache/wrappers/jquery/mustache.js.post generated vendored Normal file
View file

@ -0,0 +1,13 @@
$.mustache = function (template, view, partials) {
return Mustache.render(template, view, partials);
};
$.fn.mustache = function (view, partials) {
return $(this).map(function (i, elm) {
var template = $.trim($(elm).html());
var output = $.mustache(template, view, partials);
return $(output).get();
});
};
})(jQuery);

View file

@ -0,0 +1,9 @@
/*
Shameless port of a shameless port
@defunkt => @janl => @aq
See http://github.com/defunkt/mustache for more info.
*/
;(function($) {