Sourcemaps: handle more escapable characters in keys
This commit is contained in:
parent
e38b5a70e8
commit
fae0f14f4a
|
|
@ -288,6 +288,10 @@ function OutputStream(options) {
|
|||
{find:'\n', replace:'\\n'},
|
||||
{find:'\r', replace:'\\r'},
|
||||
{find:'\t', replace:'\\t'},
|
||||
{find:'\b', replace:'\\b'},
|
||||
{find:'\f', replace:'\\f'},
|
||||
{find:'\v', replace:'\\v'},
|
||||
{find:'\\', replace:'\\\\'},
|
||||
{find:'\u2028', replace:'\\u2028'},
|
||||
{find:'\u2029', replace:'\\u2029'}
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user