aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node_modules/undici/lib/llhttp/utils.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/undici/lib/llhttp/utils.js')
-rw-r--r--node_modules/undici/lib/llhttp/utils.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/node_modules/undici/lib/llhttp/utils.js b/node_modules/undici/lib/llhttp/utils.js
new file mode 100644
index 0000000..8a32e56
--- /dev/null
+++ b/node_modules/undici/lib/llhttp/utils.js
@@ -0,0 +1,15 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+exports.enumToMap = void 0;
+function enumToMap(obj) {
+ const res = {};
+ Object.keys(obj).forEach((key) => {
+ const value = obj[key];
+ if (typeof value === 'number') {
+ res[key] = value;
+ }
+ });
+ return res;
+}
+exports.enumToMap = enumToMap;
+//# sourceMappingURL=utils.js.map \ No newline at end of file