This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| {"foo": "bar"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class CustomError extends Error { | |
| constructor(...args) { | |
| super(...args); | |
| this.name = 'CustomError'; | |
| Object.setPrototypeOf(this, CustomError.prototype); | |
| } | |
| } | |
| function f1() {f2()} | |
| function f2() {throw new CustomError('test')} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Buildkite build completion notifications | |
| // @namespace Violentmonkey Scripts | |
| // @match https://buildkite.com/*/builds/* | |
| // @grant none | |
| // @version 1.0 | |
| // @author Ryan Wilson-Perkin | |
| // @description 6/4/2025, 2:09:56 PM | |
| // ==/UserScript== |
OlderNewer