Skip to content

Commit d494b19

Browse files
committed
fix: return raw data instead of encapsulating it
1 parent 99a3df2 commit d494b19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/utils/parser/FileParser.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default class FileParser {
1313
if (typeof data === 'string' && data.includes('// ==UserScript==')) {
1414
return extractMeta(data);
1515
}
16-
return { data };
16+
return data;
1717
}
1818

1919
parseVersion({ version } = {}) {

0 commit comments

Comments
 (0)