├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── bsconfig.json ├── package.json ├── src ├── Decode.res ├── Decode.resi ├── DecodeAux.res ├── Encode.res ├── Encode.resi └── EncodeAux.res └── test ├── BasicDecode.test.res ├── BasicEncode.test.res ├── WithAux.test.res └── schema.res /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | test/ 3 | src/**/*.mjs 4 | .merlin 5 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/README.md -------------------------------------------------------------------------------- /bsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/bsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/package.json -------------------------------------------------------------------------------- /src/Decode.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/src/Decode.res -------------------------------------------------------------------------------- /src/Decode.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/src/Decode.resi -------------------------------------------------------------------------------- /src/DecodeAux.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/src/DecodeAux.res -------------------------------------------------------------------------------- /src/Encode.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/src/Encode.res -------------------------------------------------------------------------------- /src/Encode.resi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/src/Encode.resi -------------------------------------------------------------------------------- /src/EncodeAux.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/src/EncodeAux.res -------------------------------------------------------------------------------- /test/BasicDecode.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/test/BasicDecode.test.res -------------------------------------------------------------------------------- /test/BasicEncode.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/test/BasicEncode.test.res -------------------------------------------------------------------------------- /test/WithAux.test.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/test/WithAux.test.res -------------------------------------------------------------------------------- /test/schema.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chris-armstrong/funicular/HEAD/test/schema.res --------------------------------------------------------------------------------