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( " " );