UNPKG

vue-simple-range-slider

Version:

Change Your numeric value or numeric range value with dragging handles

13 lines (10 loc) 263 B
module.exports = function(node) { var value = node.value; // remove escaped newlines, i.e. // .a { content: "foo\ // bar"} // -> // .a { content: "foobar" } value = value.replace(/\\(\r\n|\r|\n|\f)/g, ''); node.value = value; };