417a553cc2227f5110fcad5035b12b9110a0ebecfb8fbdd6785defd1b35c73cc568451409fd4a9febaa0886f0100f24f0bef21ff5d7439b8e410d4a409f629 362 B

1234567891011121314
  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. } );