stripAndCollapse.js 384 B

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