mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-25 10:01:30 -04:00
9 lines
170 B
JavaScript
Executable File
9 lines
170 B
JavaScript
Executable File
"use strict";
|
|
|
|
(function () {
|
|
var BottleneckError;
|
|
|
|
BottleneckError = class BottleneckError extends Error {};
|
|
|
|
module.exports = BottleneckError;
|
|
}).call(undefined); |