├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bower.json ├── shell.nix ├── src └── Record │ └── Format.purs └── test └── Main.purs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/purescript-record-format/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/purescript-record-format/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/purescript-record-format/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/purescript-record-format/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/purescript-record-format/HEAD/bower.json -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/purescript-record-format/HEAD/shell.nix -------------------------------------------------------------------------------- /src/Record/Format.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/purescript-record-format/HEAD/src/Record/Format.purs -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kcsongor/purescript-record-format/HEAD/test/Main.purs --------------------------------------------------------------------------------