From f5f8239057f1c9a3a9e25d042a8b02c4141e9855 Mon Sep 17 00:00:00 2001 From: Daniel Stutzman Date: Sat, 25 Jan 2014 11:55:39 -0700 Subject: [PATCH] Don't unescape \x00 in regexes (it breaks IE8) --- lib/output.js | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/output.js b/lib/output.js index c2f49e9e..2676aa93 100644 --- a/lib/output.js +++ b/lib/output.js @@ -1140,6 +1140,7 @@ function OutputStream(options) { 0x21 , // ! 0x0a , // \n 0x0d , // \r + 0x00 , // \0 0xfeff , // Unicode BOM 0x2028 , // unicode "line separator" 0x2029 , // unicode "paragraph separator" -- 2.34.1