Skip to content

Commit 4a593f9

Browse files
committed
Fix lint error
1 parent 0f0ae8f commit 4a593f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/lib/parsers/javascript.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var test = require('tap').test,
55
parse = require('../../../lib/parsers/javascript');
66

77
function toComments(source, filename, opts) {
8-
source = typeof source === 'string' ? source : '(' + source.toString() + ')';
8+
source = typeof source === 'string' ? source : '(' + source.toString() + ')';
99
return parse({
1010
file: filename || 'test.js',
1111
source: source

0 commit comments

Comments
 (0)