JSFiddle - React, Tailwind, and code Playground

by Vladimir Sobolev

JavaScript

var x = 'yndxy3ndxwergwebrwebrynfx';

	var ignoreErrors = [
		/NotSupportedError/i,
		/__likelyCallbacks/,
		/i\.promises\[e\] is not a function/,
		/script-src directive/,
		/request was interrupted/,
		/accessing a cross/,
		/frame with origin/,
		/InvalidCharacterError/,
		/illegal character/, // YEPS
		/404/,

		/operation was aborted/,
		/Invalid or unexpected token/,
		/decoded is not correctly encoded/,
		/CustomEvent/,
		/yndx/,
		/cssRules/,
		/__gCrWeb/,
		/Yandex/
	];
  
  		var ignore = false;

		ignoreErrors.forEach(function(regex){
			if (regex.test(x)) ignore = true;
		});

console.log(ignore)