├── .envrc ├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── nix ├── easy-ps.nix └── pinned.nix ├── package.json ├── packages.dhall ├── shell.nix ├── spago.dhall ├── src └── Data │ └── Tuple │ ├── Native.js │ └── Native.purs └── test ├── Main.js └── Main.purs /.envrc: -------------------------------------------------------------------------------- 1 | use_nix 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/bower.json -------------------------------------------------------------------------------- /nix/easy-ps.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/nix/easy-ps.nix -------------------------------------------------------------------------------- /nix/pinned.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/nix/pinned.nix -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/package.json -------------------------------------------------------------------------------- /packages.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/packages.dhall -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/shell.nix -------------------------------------------------------------------------------- /spago.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/spago.dhall -------------------------------------------------------------------------------- /src/Data/Tuple/Native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/src/Data/Tuple/Native.js -------------------------------------------------------------------------------- /src/Data/Tuple/Native.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/src/Data/Tuple/Native.purs -------------------------------------------------------------------------------- /test/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/test/Main.js -------------------------------------------------------------------------------- /test/Main.purs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athanclark/purescript-tuples-native/HEAD/test/Main.purs --------------------------------------------------------------------------------