PHP 8.2.29
Preview: wp-sanitize.js Size: 1.30 KB
/home/medyaist/hurdamakara.com/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 2025-12-08 04:57:45
Edit Download
crop DIR
- drwxr-xr-x 2026-01-12 08:38:08
Edit Download
dist DIR
- drwxr-xr-x 2026-01-12 08:38:12
Edit Download
- drwxr-xr-x 2026-01-10 00:00:23
Edit Download
jcrop DIR
- drwxr-xr-x 2025-12-08 04:57:51
Edit Download
jquery DIR
- drwxr-xr-x 2025-12-08 04:58:08
Edit Download
- drwxr-xr-x 2025-12-08 04:58:11
Edit Download
plupload DIR
- drwxr-xr-x 2026-01-12 11:35:33
Edit Download
swfupload DIR
- drwxr-xr-x 2026-01-10 00:13:51
Edit Download
thickbox DIR
- drwxr-xr-x 2025-12-08 04:57:54
Edit Download
tinymce DIR
- drwxr-xr-x 2026-01-10 01:18:01
Edit Download
25.24 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
3.81 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
2.51 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
45.88 KB lrw-r--r-- 2025-12-08 04:57:07
Edit Download
14.34 KB lrw-r--r-- 2025-12-08 04:57:07
Edit Download
4.11 KB lrw-r--r-- 2025-12-08 04:57:07
Edit Download
1.62 KB lrw-r--r-- 2025-12-08 04:57:07
Edit Download
2.97 KB lrw-r--r-- 2025-12-08 04:57:07
Edit Download
10.22 KB lrw-r--r-- 2025-12-08 04:57:07
Edit Download
4.34 KB lrw-r--r-- 2025-12-08 04:57:07
Edit Download
6.62 KB lrw-r--r-- 2025-12-08 04:57:07
Edit Download
3.10 KB lrw-r--r-- 2025-12-08 04:57:07
Edit Download
3.14 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
1.22 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
12.89 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
2.82 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
22.23 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
8.59 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
2.79 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
970 B lrw-r--r-- 2025-12-08 04:57:08
Edit Download
597 B lrw-r--r-- 2025-12-08 04:57:08
Edit Download
24.72 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
7.34 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
9.99 KB lrw-r--r-- 2025-12-08 04:57:08
Edit Download
3.54 KB lrw-r--r-- 2025-12-08 04:57:08
Edit Download
1.30 KB lrw-r--r-- 2025-12-08 20:16:44
Edit Download
444 B lrw-r--r-- 2025-12-08 20:16:44
Edit Download
4.57 KB lrw-r--r-- 2025-12-08 04:57:08
Edit Download
1.39 KB lrw-r--r-- 2025-12-08 04:57:08
Edit Download
If ZipArchive is unavailable, a .tar will be created (no compression).