Manipulation: Support $el.html(selfRemovingScript) (#5378)
[jquery.git] / src / core / stripAndCollapse.js
blobc9a73c6fa27406df325ec78bb475d092a28c847a
1 import { rnothtmlwhite } from "../var/rnothtmlwhite.js";
3 // Strip and collapse whitespace according to HTML spec
4 // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
5 export function stripAndCollapse( value ) {
6         var tokens = value.match( rnothtmlwhite ) || [];
7         return tokens.join( " " );