UNPKG

286 Btext/coffeescriptView Raw
1sourceMapSupport.install()
2
3foo = -> throw new Error 'foo'
4
5try
6 foo()
7catch e
8 if /\bscript\.coffee\b/.test e.stack
9 document.body.appendChild document.createTextNode 'Test passed'
10 else
11 document.body.appendChild document.createTextNode 'Test failed'
12 console.log e.stack