function withInterpreter()

in src/main/resources/assets/scaffold.js [36:43]


  function withInterpreter(fn) {
    var interpreter = $.cookie(interpreterCookie);
    if (interpreter === undefined) {
      withNewInterpreter(fn);
    } else {
      fn(interpreter);
    }
  }