aboutsummaryrefslogtreecommitdiffstats
path: root/src/var/rtrimCSS.js
blob: f35b8a1e9f8b1dde7a7113940dc251c47f648c2a (plain)
1
2
3
4
5
6
import { whitespace } from "./whitespace.js";

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