Replace "\b" with "\u0008"

This commit is contained in:
Alexey Shvayka 2020-02-24 19:44:43 +02:00 committed by Rick Waldron
parent 2377131fd7
commit 8dccb69cc0
1 changed files with 1 additions and 1 deletions

View File

@ -16,5 +16,5 @@ info: |
1. Return the code point value of U+0008 (BACKSPACE).
---*/
assert(/[\b]/u.test('\b'));
assert(/[\b]/u.test('\u0008'));
assert(/[\b-A]/u.test('A'));