Skip to content

Commit

Permalink
Fix invalid strict-mode syntax with hexadecimal
Browse files Browse the repository at this point in the history
  • Loading branch information
christianbundy committed Jul 27, 2019
1 parent 27527bb commit e1a540b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/lowbyte.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var test = require('tape');
var inspect = require('../');

var obj = { x: 'a\r\nb', y: '\5! \x1f \022' };
var obj = { x: 'a\r\nb', y: '\x05! \x1f \x12' };

test('interpolate low bytes', function (t) {
t.plan(1);
Expand Down

0 comments on commit e1a540b

Please sign in to comment.