remove the unnecessary \s*

This commit is contained in:
tophf 2019-09-24 18:13:07 +03:00
parent a52ec181ad
commit a6fb5a7f6b

View File

@ -5,7 +5,7 @@
function createAppliesToLineWidget(cm) {
const THROTTLE_DELAY = 400;
const RX_SPACE = /(?:\s+|\s*\/\*)+/y;
const RX_SPACE = /(?:\s+|\/\*)+/y;
let TPL, EVENTS, CLICK_ROUTE;
let widgets = [];
let fromLine, toLine, actualStyle;