https://github.com/queckezz/list
[Deprecated] Functions for interacting with arrays in a functional way
https://github.com/queckezz/list
Last synced: 7 months ago
JSON representation
[Deprecated] Functions for interacting with arrays in a functional way
- Host: GitHub
- URL: https://github.com/queckezz/list
- Owner: queckezz
- License: mit
- Created: 2015-03-04T13:44:34.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-04-06T15:54:59.000Z (over 10 years ago)
- Last Synced: 2025-03-11T17:01:34.840Z (7 months ago)
- Language: JavaScript
- Homepage:
- Size: 199 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# structs-list
[![Build Status][travis-image]][travis-url]
[![NPM version][npm-image]][npm-url]
[![Dependency Status][david-image]][david-url]
[![License][license-image]][license-url]
[![Test coverage][coveralls-image]][coveralls-url]Compact functions for interacting with arrays in a functional way. They leverage from already existing functions in ES5.
## Installation
```bash
$ npm install structs-list
```## Usage
By using a simple prepublish script which moves all functions from `lib/` to the toplevel you can require functions like the following:
```js
var append = require('structs-list/append')
```Documentation is available [here](./docs/index.md).
## Tests
```bash
$ npm test
```## Prior work
* [Ramda](https://github.com/ramda/ramda)
## License
[MIT][license-url]
[npm-image]: https://img.shields.io/npm/v/structs-list.svg?style=flat-square
[npm-url]: https://npmjs.org/package/structs-list[david-image]: http://img.shields.io/david/structs/list.svg?style=flat-square
[david-url]: https://david-dm.org/structs/list[license-image]: http://img.shields.io/npm/l/structs-list.svg?style=flat-square
[license-url]: ./license[travis-image]: https://img.shields.io/travis/structs/list.svg?style=flat-square
[travis-url]: https://travis-ci.org/structs/list[coveralls-image]: https://img.shields.io/coveralls/structs/list/master.svg?style=flat-square
[coveralls-url]: https://coveralls.io/r/structs/list?branch=master