diff options
author | 2021-11-05 01:33:09 -0700 | |
---|---|---|
committer | 2021-11-05 01:33:09 -0700 | |
commit | 3d6fab6e49dcce016fb0e70b3ddc54b4eedda3ca (patch) | |
tree | 7366143d324d487614662b03d639e388af03b2c9 /integration/snapshots/string-escapes.hmr.js | |
parent | d0823beef508c6f19025070ff2b8039a7346eee8 (diff) | |
download | bun-3d6fab6e49dcce016fb0e70b3ddc54b4eedda3ca.tar.gz bun-3d6fab6e49dcce016fb0e70b3ddc54b4eedda3ca.tar.zst bun-3d6fab6e49dcce016fb0e70b3ddc54b4eedda3ca.zip |
:camera: Snapshotsbun-v0.0.45
Diffstat (limited to 'integration/snapshots/string-escapes.hmr.js')
-rw-r--r-- | integration/snapshots/string-escapes.hmr.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/integration/snapshots/string-escapes.hmr.js b/integration/snapshots/string-escapes.hmr.js index 53f3ba24a..e1f38c7af 100644 --- a/integration/snapshots/string-escapes.hmr.js +++ b/integration/snapshots/string-escapes.hmr.js @@ -346,10 +346,10 @@ var hmr = new HMR(2482749838, "string-escapes.js"), exports = hmr.exports; data: "\v" }, undefined, false, undefined, this), jsx("div", { - data: "\u2028" + data: "\\u2028" }, undefined, false, undefined, this), jsx("div", { - data: "\u2029" + data: "\\u2029" }, undefined, false, undefined, this), jsx("div", { data: "😊" @@ -401,11 +401,11 @@ var hmr = new HMR(2482749838, "string-escapes.js"), exports = hmr.exports; jsx("div", { children: "\v" }, undefined, false, undefined, this), - jsx("div", {}, "\u2028", false, undefined, this), + jsx("div", {}, "\\u2028", false, undefined, this), jsx("div", { children: "\u2028" }, undefined, false, undefined, this), - jsx("div", {}, "\u2029", false, undefined, this), + jsx("div", {}, "\\u2029", false, undefined, this), jsx("div", { children: "\u2029" }, undefined, false, undefined, this), |