all files / lib/ defaults.js

100% Statements 5/5
61.11% Branches 11/18
100% Functions 1/1
100% Lines 5/5
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                                            
(function() {
  var defaults, execution, _, _ref, _ref1, _ref2;
 
  execution = require('./execution');
 
  _ = (_ref = (_ref1 = (_ref2 = typeof window !== "undefined" && window !== null ? window._ : void 0) != null ? _ref2 : typeof self !== "undefined" && self !== null ? self._ : void 0) != null ? _ref1 : typeof global !== "undefined" && global !== null ? global._ : void 0) != null ? _ref : require('lodash');
 
  module.exports = defaults = {
    thisValue: null,
    globals: [],
    language: "javascript",
    functionName: null,
    functionParameters: [],
    yieldAutomatically: false,
    yieldConditionally: false,
    executionCosts: {},
    noSerializationInFlow: false,
    noVariablesInFlow: false,
    skipDuplicateUserInfoInFlow: false,
    includeFlow: true,
    includeMetrics: true,
    includeStyle: true,
    protectBuiltins: true
  };
 
}).call(this);