123456789101112131415161718 |
- /**
- * SelfDefendingTemplate. Enters code in infinity loop.
- *
- * @returns {string}
- */
- export function SelfDefendingNoEvalTemplate (): string {
- return `
- const {selfDefendingFunctionName} = {callControllerFunctionName}(this, function () {
- {globalVariableTemplate}
-
- return that
- .RegExp('([\\\\S]+([\\\\s]+[\\\\S]+)+)+[\\\\S]}')
- .test({selfDefendingFunctionName});
- });
-
- {selfDefendingFunctionName}();
- `;
- }
|