not-node 5.1.40 → 5.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/form/form.js +1 -1
package/package.json
CHANGED
package/src/form/form.js
CHANGED
|
@@ -108,7 +108,7 @@ class Form {
|
|
|
108
108
|
|
|
109
109
|
extractRequestEnvs(req) {
|
|
110
110
|
const result = {};
|
|
111
|
-
|
|
111
|
+
Object.values(this.#ENV_EXTRACTORS).forEach((extractor) => {
|
|
112
112
|
const extracted = extractor(this, req);
|
|
113
113
|
if (
|
|
114
114
|
extracted &&
|