We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 589e87a commit a8b5425Copy full SHA for a8b5425
.eslintrc
@@ -4,7 +4,6 @@
4
"rules": {
5
"indent": [2, 4],
6
"strict": 1,
7
- "no-octal-escape": 1,
8
},
9
"globals": {
10
"BigInt": false,
test/lowbyte.js
@@ -1,7 +1,7 @@
1
var test = require('tape');
2
var inspect = require('../');
3
-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);
0 commit comments