Files
w4rpservices/node_modules/jquery/src/core/stripAndCollapse.js
2018-10-27 03:51:47 -05:00

15 lines
362 B
JavaScript
Vendored

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