Urara-Blog/node_modules/.pnpm-store/v3/files/c9/4f11d957315ec6aaa9d49fcf2235205924621271fd3c65053741077dee0c1db0166cfae838a4bbda328e4e4aa58ce62b325be5bdbd93f85d6bae162876d46e
2022-08-14 01:14:53 +08:00

12 lines
263 B
Text

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;
};