fix corner cases in preserve_line (#3212)
This commit is contained in:
@@ -162,8 +162,7 @@ var MAP = (function() {
|
||||
})();
|
||||
|
||||
function push_uniq(array, el) {
|
||||
if (array.indexOf(el) < 0)
|
||||
array.push(el);
|
||||
if (array.indexOf(el) < 0) return array.push(el);
|
||||
}
|
||||
|
||||
function string_template(text, props) {
|
||||
|
||||
Reference in New Issue
Block a user