json-extra
json-extra copied to clipboard
Convenience functions for working with Json.
Bumps [qs](https://github.com/ljharb/qs) from 6.5.2 to 6.5.3. Changelog Sourced from qs's changelog. 6.5.3 [Fix] parse: ignore __proto__ keys (#428) [Fix] utils.merge`: avoid a crash with a null target and a truthy...
Bumps [decode-uri-component](https://github.com/SamVerschueren/decode-uri-component) from 0.2.0 to 0.2.2. Release notes Sourced from decode-uri-component's releases. v0.2.2 Prevent overwriting previously decoded tokens 980e0bf https://github.com/SamVerschueren/decode-uri-component/compare/v0.2.1...v0.2.2 v0.2.1 Switch to GitHub workflows 76abc93 Fix issue where decode...
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.10.2 to 6.12.6. Release notes Sourced from ajv's releases. v6.12.6 Fix performance issue of "url" format. v6.12.5 Fix uri scheme validation (@ChALkeR). Fix boolean schemas with strictKeywords...
Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....
Bumps [yargs-parser](https://github.com/yargs/yargs-parser) from 13.1.1 to 13.1.2. Changelog Sourced from yargs-parser's changelog. 15.0.0 (2019-10-07) Features rework collect-unknown-options into unknown-options-as-args, providing more comprehensive functionality (ef771ca) BREAKING CHANGES rework collect-unknown-options into unknown-options-as-args, providing...
The standard elm/json has a nice function [Json.Decode.at](https://package.elm-lang.org/packages/elm/json/latest/Json-Decode#at) ``` elm Json.Decode.at [ "Nightmare", "At" ] Json.Decode.string ``` This PR introduces the counterpart for encoding: `Json.Encode.Extra.at` ```elm encodedValue = (Json.Encode.string "Elm...
Would be nice to have a key-value decoder that allowed you to specify the key decoder, instead of it always being `String` :slightly_smiling_face: Useful when using wrapped types like `type...
This example import Json.Decode exposing (..) """ { "hello": "world", "foo": "bar" } """ |> decodeString (dict2 string string) gives following error: Problem with the given value: "hello" This is...
For combining multiple decode results in a way that might fail. E.g if you have json that looks like ```json { "ids": [1, 2, 3, 4], "names": ["Not", "Enough", "Names"]...