@chris.troutner/ipfs-message-port-client
Version:
IPFS client library for accessing IPFS node over message port
20 lines (16 loc) • 357 B
JavaScript
'use strict'
exports.TimeoutError = class TimeoutError extends Error {
get name () {
return this.constructor.name
}
}
exports.AbortError = class AbortError extends Error {
get name () {
return this.constructor.name
}
}
exports.DisconnectError = class DisconnectError extends Error {
get name () {
return this.constructor.name
}
}