mirror of https://gitee.com/bigwinds/arangodb
17 lines
347 B
JavaScript
17 lines
347 B
JavaScript
/* jshint -W051:true */
|
|
/* eslint-disable */
|
|
global.DEFINE_MODULE('vm', (function () {
|
|
'use strict'
|
|
/* eslint-enable */
|
|
|
|
const internal = require('internal');
|
|
|
|
var exports = {};
|
|
|
|
exports.runInThisContext = function (script, filename) {
|
|
return internal.executeScript(script.toString(), null, filename);
|
|
};
|
|
|
|
return exports;
|
|
}()));
|