File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -187,13 +187,13 @@ Error.prepareStackTrace you might run into the exception "Traceback does not sup
187187In order to not have raven-node (and the underlying raw-stacktrace library) require
188188Traceback you can pass your own stackFunction in the options. For example:
189189
190- ``` javascript
191- var client = new raven.Client (' {{ SENTRY_DSN }}' , { stackFunction: {{ Your stack function }}});
190+ ``` coffeescript
191+ client = new raven.Client (' {{ SENTRY_DSN }}' , { stackFunction : {{ Your stack function }}});
192192```
193193
194194So for example:
195- ```javascript
196- var client = new raven.Client('{{ SENTRY_DSN }}' , {
195+ ``` coffeescript
196+ client = new raven.Client (' {{ SENTRY_DSN }}' , {
197197 stackFunction : Error .prepareStackTrace
198198});
199199```
You can’t perform that action at this time.
0 commit comments