-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
59 lines (48 loc) · 1.17 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
'use strict';
var parse = require('esprima').parse;
var transform = require('esnext').transform;
var traverse = require('estraverse').traverse;
var attachComments = require('estraverse').attachComments;
module.exports = function (options) {
options = options || {};
var loc = options.loc !== false;
var attachComment = !!options.comments;
return function (files) {
return files.map(function (file) {
var ast = parse(file.contents, {
loc: loc,
source: file.path,
range: attachComment,
tokens: attachComment,
comment: attachComment
});
if (attachComment) {
attachComments(ast, ast.comments, ast.tokens);
delete ast.comments;
delete ast.tokens;
traverse(ast, {
leave: function (node) {
delete node.range;
[node.leadingComments, node.trailingComments].forEach(function (comments) {
if (!comments) {
return;
}
comments.forEach(function (comment) {
delete comment.range;
delete comment.extendedRange;
});
});
}
});
}
ast = transform(ast);
return {
type: 'File',
program: ast,
loc: {
source: file.path
}
};
});
};
};