├── .gitignore ├── examples ├── branching.ts ├── double-all.ts ├── fizz-buzz.ts └── test.ts ├── package.json ├── src ├── array.ts ├── chain.ts ├── cond.ts ├── if-else.ts ├── range.ts └── types.ts ├── test ├── array.ts ├── chain.ts ├── cond.ts ├── fizz-buzz.ts ├── if-else.ts └── range.ts ├── tmp.json ├── tsconfig.json ├── tsfmt.json ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /examples/branching.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/examples/branching.ts -------------------------------------------------------------------------------- /examples/double-all.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/examples/double-all.ts -------------------------------------------------------------------------------- /examples/fizz-buzz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/examples/fizz-buzz.ts -------------------------------------------------------------------------------- /examples/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/examples/test.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/package.json -------------------------------------------------------------------------------- /src/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/src/array.ts -------------------------------------------------------------------------------- /src/chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/src/chain.ts -------------------------------------------------------------------------------- /src/cond.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/src/cond.ts -------------------------------------------------------------------------------- /src/if-else.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/src/if-else.ts -------------------------------------------------------------------------------- /src/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/src/range.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/src/types.ts -------------------------------------------------------------------------------- /test/array.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/test/array.ts -------------------------------------------------------------------------------- /test/chain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/test/chain.ts -------------------------------------------------------------------------------- /test/cond.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/test/cond.ts -------------------------------------------------------------------------------- /test/fizz-buzz.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/test/fizz-buzz.ts -------------------------------------------------------------------------------- /test/if-else.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/test/if-else.ts -------------------------------------------------------------------------------- /test/range.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/test/range.ts -------------------------------------------------------------------------------- /tmp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/tmp.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsfmt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/tsfmt.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tyler-hoffman/line-below/HEAD/yarn.lock --------------------------------------------------------------------------------