UNPKG

268 BJavaScriptView Raw
1var test = require('tape');
2var inspect = require('../');
3
4var obj = { x: 'a\r\nb', y: '\x05! \x1f \x12' };
5
6test('interpolate low bytes', function (t) {
7 t.plan(1);
8 t.equal(
9 inspect(obj),
10 "{ x: 'a\\r\\nb', y: '\\x05! \\x1F \\x12' }"
11 );
12});