Sha256: beef50fea16c75e829bb5288e8135d0c8d5e9c1425c123978dd38a2754afc007
Contents?: true
Size: 362 Bytes
Versions: 48
Compression:
Stored size: 362 Bytes
Contents
'use strict' class AbortError extends Error { constructor (message) { super(message) this.code = 'FETCH_ABORTED' this.type = 'aborted' Error.captureStackTrace(this, this.constructor) } get name () { return 'AbortError' } // don't allow name to be overridden, but don't throw either set name (s) {} } module.exports = AbortError
Version data entries
48 entries across 24 versions & 1 rubygems