aboutsummaryrefslogtreecommitdiffstats
path: root/npm_assets/node_modules/jquery/src/var/rtrimCSS.js
blob: cfe1eead38b5f5f8121fc11f8cfa00492d399f0c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
define( [
	"./whitespace"
], function( whitespace ) {

"use strict";

return new RegExp(
	"^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$",
	"g"
);

} );