aboutsummaryrefslogtreecommitdiffstats
path: root/src/core/stripAndCollapse.js
blob: 944a79362d2eaadefba3a8d29162bb55f203a6c3 (plain)
1
2
3
4
5
6
7
8
9
10
import rnothtmlwhite from "../var/rnothtmlwhite.js";

// 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( " " );
}

export default stripAndCollapse;