mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
10 lines
123 B
JavaScript
10 lines
123 B
JavaScript
ErrorHelper = {
|
|
foo: function() {
|
|
this.bar()
|
|
},
|
|
|
|
bar: function bar() {
|
|
referenceError
|
|
}
|
|
};
|