@medv/list
TypeScript icon, indicating that this package has built-in type declarations

1.0.1 • Public • Published

@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

Readme

Keywords

Package Sidebar

Install

npm i @medv/list

Weekly Downloads

0

Version

1.0.1

License

MIT

Last publish

Collaborators

  • medv