rnothtmlwhite.js 229 B

12345678
  1. define( function() {
  2. "use strict";
  3. // Only count HTML whitespace
  4. // Other whitespace should count in values
  5. // https://html.spec.whatwg.org/multipage/infrastructure.html#space-character
  6. return ( /[^\x20\t\r\n\f]+/g );
  7. } );