Small fixes
A selection of 80 fixes from 174 pull requests.
24.Unparsed form data
The client passed form-urlencoded text to a schema expecting UrlParams. Parse the text before decoding the record.
11234567return StringFromArrayBuffer.pipe(Schema.decodeTo(Schema.RecordFromUrlParams))return StringFromArrayBuffer.pipe(Schema.decodeTo( Schema.RecordFromUrlParams, SchemaTransformation.transform({ decode: (text) => UrlParams.fromInput(new URLSearchParams(text)), encode: UrlParams.toString })))