iOS JavaScriptCore: evaluateScriptFile instead of evaluateScript?

There is executeScript method in JSContext. Can i execute script file instead of script code as string? The difference is that script file can load another files using load('another_file.js')

  var nodeFS = require('fs');

  read = function(filename) {
    var absolute = find(filename);
    return nodeFS['readFileSync'](absolute).toString();
  };

  load = function(f) {
    globalEval(read(f));
  };