This commit is contained in:
2026-03-20 17:13:38 +01:00
parent 4c84735b75
commit c043ee9a52
1152 changed files with 317560 additions and 0 deletions
@@ -0,0 +1,12 @@
(function($) {
'use strict';
$('.js-code-to-eval').each(function() {
eval($(this).text()); // jshint ignore:line
$(this).text(
$(this).text()
.replace(/'Client-ID\s[a-z0-9]+'/, '\'Client-ID xxxxxxxxxxxx\'')
.replace(/apiKey:\s+'.*'/, 'apiKey: \'xxxxxxxxxxxx\'')
);
});
})(jQuery);