DebugProtectionFunctionIntervalTemplate.ts 217 B

12345678910
  1. /**
  2. * @returns {string}
  3. */
  4. export function DebugProtectionFunctionIntervalTemplate (): string {
  5. return `
  6. setInterval(function () {
  7. {debugProtectionFunctionName}();
  8. }, 4000);
  9. `;
  10. }