runExampleCode.js 252 B

12345678
  1. (function($) {
  2. 'use strict';
  3. $('.js-code-to-eval').each(function() {
  4. eval($(this).text()); // jshint ignore:line
  5. $(this).text($(this).text().replace(/'Client-ID\s[a-z0-9]+'/, '\'Client-ID xxxxxxxxxxxx\''));
  6. });
  7. })(jQuery);