PHP 8.2.29
Preview: wp-sanitize.js Size: 1.30 KB
/home/medyaist/polisgazetesi.com.tr--/wp-includes/js/wp-sanitize.js
/**
 * @output wp-includes/js/wp-sanitize.js
 */

/* eslint-env es6 */

( function () {

	window.wp = window.wp || {};

	/**
	 * wp.sanitize
	 *
	 * Helper functions to sanitize strings.
	 */
	wp.sanitize = {

		/**
		 * Strip HTML tags.
		 *
		 * @param {string} text - Text to strip the HTML tags from.
		 *
		 * @return {string} Stripped text.
		 */
		stripTags: function( text ) {
			let _text = text || '';

			// Do the search-replace until there is nothing to be replaced.
			do {
				// Keep pre-replace text for comparison.
				text = _text;

				// Do the replacement.
				_text = text
					.replace( /<!--[\s\S]*?(-->|$)/g, '' )
					.replace( /<(script|style)[^>]*>[\s\S]*?(<\/\1>|$)/ig, '' )
					.replace( /<\/?[a-z][\s\S]*?(>|$)/ig, '' );
			} while ( _text !== text );

			// Return the text with stripped tags.
			return _text;
		},

		/**
		 * Strip HTML tags and convert HTML entities.
		 *
		 * @param {string} text - Text to strip tags and convert HTML entities.
		 *
		 * @return {string} Sanitized text.
		 */
		stripTagsAndEncodeText: function( text ) {
			let _text = wp.sanitize.stripTags( text ),
				textarea = document.createElement( 'textarea' );

			try {
				textarea.textContent = _text;
				_text = wp.sanitize.stripTags( textarea.value );
			} catch ( er ) {}

			return _text;
		}
	};
}() );

Directory Contents

Dirs: 11 × Files: 29
Name Size Perms Modified Actions
- drwxr-xr-x 2026-01-13 06:36:42
Edit Download
crop DIR
- drwxr-xr-x 2026-01-13 08:50:52
Edit Download
dist DIR
- drwxr-xr-x 2026-01-13 08:51:20
Edit Download
- drwxr-xr-x 2025-02-06 14:27:26
Edit Download
jcrop DIR
- drwxr-xr-x 2022-03-24 17:07:06
Edit Download
jquery DIR
- drwxr-xr-x 2025-02-06 14:27:26
Edit Download
- drwxr-xr-x 2025-02-06 14:27:26
Edit Download
plupload DIR
- drwxr-xr-x 2025-10-30 19:32:34
Edit Download
swfupload DIR
- drwxr-xr-x 2026-01-12 17:51:52
Edit Download
thickbox DIR
- drwxr-xr-x 2025-09-30 20:51:28
Edit Download
tinymce DIR
- drwxr-xr-x 2025-03-17 13:16:26
Edit Download
25.24 KB lrw-r--r-- 2023-10-09 18:31:28
Edit Download
9.54 KB lrw-r--r-- 2025-02-06 14:27:26
Edit Download
3.81 KB lrw-r--r-- 2025-02-08 12:53:18
Edit Download
45.88 KB lrw-r--r-- 2023-01-10 06:30:14
Edit Download
14.34 KB lrw-r--r-- 2025-02-06 14:27:26
Edit Download
4.11 KB lrw-r--r-- 2021-03-18 16:01:04
Edit Download
1.62 KB lrw-r--r-- 2025-02-06 14:27:26
Edit Download
14.88 KB lrw-r--r-- 2024-04-12 14:47:14
Edit Download
2.97 KB lrw-r--r-- 2025-02-06 14:27:26
Edit Download
10.22 KB lrw-r--r-- 2021-04-10 09:40:06
Edit Download
4.34 KB lrw-r--r-- 2025-02-06 14:27:26
Edit Download
6.62 KB lrw-r--r-- 2021-11-10 23:49:18
Edit Download
3.10 KB lrw-r--r-- 2025-02-06 14:27:26
Edit Download
3.14 KB lrw-r--r-- 2023-08-10 16:49:18
Edit Download
1.22 KB lrw-r--r-- 2025-02-06 14:27:26
Edit Download
12.89 KB lrw-r--r-- 2025-11-04 15:18:32
Edit Download
2.82 KB lrw-r--r-- 2025-11-04 15:18:32
Edit Download
22.23 KB lrw-r--r-- 2025-11-07 11:44:34
Edit Download
8.59 KB lrw-r--r-- 2025-10-06 01:51:34
Edit Download
2.79 KB lrw-r--r-- 2025-10-06 01:51:34
Edit Download
970 B lrw-r--r-- 2018-06-27 23:30:16
Edit Download
24.72 KB lrw-r--r-- 2023-06-24 11:32:20
Edit Download
7.34 KB lrw-r--r-- 2025-02-06 14:27:26
Edit Download
9.99 KB lrw-r--r-- 2021-02-16 17:25:04
Edit Download
3.54 KB lrw-r--r-- 2025-02-06 14:27:26
Edit Download
1.30 KB lrw-r--r-- 2025-10-06 20:46:30
Edit Download
444 B lrw-r--r-- 2025-10-06 20:46:30
Edit Download
4.57 KB lrw-r--r-- 2022-09-20 00:52:10
Edit Download
1.39 KB lrw-r--r-- 2025-02-06 14:27:26
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).