blob: 2b63820dadfaeb8a20b0a1fa92fe35313ca69128 [file] [log] [blame]
Copybara botbe50d492023-11-30 00:16:42 +01001define( [
2 "../var/rnothtmlwhite"
3], function( rnothtmlwhite ) {
4 "use strict";
5
6 // Strip and collapse whitespace according to HTML spec
7 // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
8 function stripAndCollapse( value ) {
9 var tokens = value.match( rnothtmlwhite ) || [];
10 return tokens.join( " " );
11 }
12
13 return stripAndCollapse;
14} );