stripAndCollapse.js 362 B

123456789101112131415
  1. define( [
  2. "../var/rnothtmlwhite"
  3. ], function( rnothtmlwhite ) {
  4. "use strict";
  5. // Strip and collapse whitespace according to HTML spec
  6. // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace
  7. function stripAndCollapse( value ) {
  8. var tokens = value.match( rnothtmlwhite ) || [];
  9. return tokens.join( " " );
  10. }
  11. return stripAndCollapse;
  12. } );