├── .gitignore ├── LICENSE ├── README.md ├── packages.dhall ├── spago.dhall ├── src └── ConvertableOptions.purs └── test ├── Example.purs └── Main.purs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefaubion/purescript-convertable-options/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefaubion/purescript-convertable-options/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefaubion/purescript-convertable-options/HEAD/README.md -------------------------------------------------------------------------------- /packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefaubion/purescript-convertable-options/HEAD/packages.dhall -------------------------------------------------------------------------------- /spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefaubion/purescript-convertable-options/HEAD/spago.dhall -------------------------------------------------------------------------------- /src/ConvertableOptions.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefaubion/purescript-convertable-options/HEAD/src/ConvertableOptions.purs -------------------------------------------------------------------------------- /test/Example.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefaubion/purescript-convertable-options/HEAD/test/Example.purs -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/natefaubion/purescript-convertable-options/HEAD/test/Main.purs --------------------------------------------------------------------------------