Skip to content

Instantly share code, notes, and snippets.

View BytewaveMLP's full-sized avatar
🇨🇦

Eliot Partridge BytewaveMLP

🇨🇦
View GitHub Profile
@BytewaveMLP
BytewaveMLP / index.js
Last active May 21, 2024 21:10 — forked from Potato22/index.js
pottob2worker
// src/backblaze.ts
var B2Error = class extends Error {
details;
constructor(message, response) {
super(message);
this.details = response.message;
}
toString() {
return `${this.message}: ${this.details}`;
}