UNPKG

jquery

Version:

JavaScript library for DOM operations

9 lines (7 loc) 308 B
import { rnothtmlwhite } from "../var/rnothtmlwhite.js"; // Strip and collapse whitespace according to HTML spec // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace export function stripAndCollapse( value ) { var tokens = value.match( rnothtmlwhite ) || []; return tokens.join( " " ); }