Blame view

node_modules/jquery/src/core/stripAndCollapse.js 362 Bytes
7820380e   “wangming”   1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  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;
  } );