1.0.1 • Published 7 years ago

@medv/list v1.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
7 years ago

@medv/list

Build Status

Immutable lists in JavaScript without [] and {}

Install

npm install @medv/list

Usage

This implementation requires tail calls optimization which for now available only in Safari and in node only with --harmony-tailcalls flag.

const {list, reverse, print} = require('@medv/list')

const a = list(1, list(2, list(3)))
const b = reverse(a)

print(a) // (1 2 3)
print(b) // (3 2 1)

For all available functions and documentation see index.js

License

MIT

1.0.1

7 years ago

1.0.0

7 years ago