We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eca2a7 commit 46fba6cCopy full SHA for 46fba6c
README.md
@@ -8,7 +8,7 @@ A JavaScript tool that allows you to debug your JavaScript by giving you a [stac
8
```js
9
var callback = function(stackframes) {
10
var stringifiedStack = stackframes.map(function(sf) {
11
- sf.toString();
+ return sf.toString();
12
}).join('\n');
13
console.log(stringifiedStack);
14
};
0 commit comments