forked from pierrec/node-eval
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheval.js
68 lines (56 loc) · 1.53 KB
/
eval.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
60
61
62
63
64
65
66
67
68
var vm = require('vm')
var isBuffer = Buffer.isBuffer
var requireLike = require('require-like')
function merge (a, b) {
if (!a || !b) return a
var keys = Object.keys(b)
for (var k, i = 0, n = keys.length; i < n; i++) {
k = keys[i]
a[k] = b[k]
}
return a
}
// Return the exports/module.exports variable set in the content
// content (String|VmScript): required
module.exports = function (content, filename, scope, includeGlobals) {
if (typeof filename !== 'string') {
if (typeof filename === 'object') {
includeGlobals = scope
scope = filename
filename = null
} else if (typeof filename === 'boolean') {
includeGlobals = filename
scope = {}
filename = null
}
}
// Expose standard Node globals
var sandbox = {}
var exports = {}
if (includeGlobals) {
merge(sandbox, global)
sandbox.require = requireLike(filename || module.parent.filename)
}
if (typeof scope === 'object') {
merge(sandbox, scope)
}
sandbox.exports = exports
sandbox.module = { exports: exports }
sandbox.global = sandbox
var options = {
filename: filename,
displayErrors: false
}
if (isBuffer(content)) {
content = content.toString()
}
// Evalutate the content with the given scope
if (typeof content === 'string') {
var stringScript = content.replace(/^\#\!.*/, '')
var script = new vm.Script(stringScript, options)
script.runInNewContext(sandbox, options)
} else {
content.runInNewContext(sandbox, options)
}
return sandbox.module.exports
}