mirror of
https://github.com/konvajs/konva.git
synced 2025-10-15 12:34:52 +08:00
9 lines
214 B
JavaScript
9 lines
214 B
JavaScript
// TODO: not tested
|
|
module.exports = function(filepath) {
|
|
var fs = require('jsdoc/fs');
|
|
var vm = require('vm');
|
|
|
|
var script = fs.readFileSync(filepath, 'utf8');
|
|
vm.runInNewContext(script, global, filepath);
|
|
};
|