Sha256: 861a42de71363b767bfa80320fb54f6439ed36b54048e8a27b05ad4315bf0a73
Contents?: true
Size: 362 Bytes
Versions: 100
Compression:
Stored size: 362 Bytes
Contents
define( [ "../var/rnothtmlwhite" ], function( rnothtmlwhite ) { "use strict"; // Strip and collapse whitespace according to HTML spec // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace function stripAndCollapse( value ) { var tokens = value.match( rnothtmlwhite ) || []; return tokens.join( " " ); } return stripAndCollapse; } );
Version data entries
100 entries across 87 versions & 13 rubygems