summaryrefslogtreecommitdiff
path: root/node_modules/got/dist/source/utils/deprecation-warning.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/got/dist/source/utils/deprecation-warning.js')
-rw-r--r--node_modules/got/dist/source/utils/deprecation-warning.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/node_modules/got/dist/source/utils/deprecation-warning.js b/node_modules/got/dist/source/utils/deprecation-warning.js
deleted file mode 100644
index 3cfb7b2..0000000
--- a/node_modules/got/dist/source/utils/deprecation-warning.js
+++ /dev/null
@@ -1,13 +0,0 @@
-"use strict";
-Object.defineProperty(exports, "__esModule", { value: true });
-const alreadyWarned = new Set();
-exports.default = (message) => {
- if (alreadyWarned.has(message)) {
- return;
- }
- alreadyWarned.add(message);
- // @ts-expect-error Missing types.
- process.emitWarning(`Got: ${message}`, {
- type: 'DeprecationWarning'
- });
-};