# cocotte-sequantial

> mix-in forEach,every,some,filter,map,reduce,reduceRight

Latest version **0.1.0** (published 2015-09-14) · MIT license · 0 weekly downloads

## Install

```sh
npm install cocotte-sequantial
pnpm add cocotte-sequantial
yarn add cocotte-sequantial
bun add cocotte-sequantial
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2015-09-14 |
| First published | 2015-09-14 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Yuki Kurata |
| Maintainers | yukik |
| Keywords | cocotte |

## Links

- npm: https://www.npmjs.com/package/cocotte-sequantial
- Repository: https://github.com/yukik/cocotte-sequantial
- Issues: https://github.com/yukik/cocotte-sequantial/issues
- npm.io page: https://npm.io/package/cocotte-sequantial

## Recent versions

- 0.1.0 (latest) — 2015-09-14

## README

cocotte-sequantial
=================

# はじめに

forEach,every,some,filter,map,reduce,reduceRightのメソッドをオブジェクトに
ミックスインします

コレクションが隠しプロパティの場合に便利です

# 使用方法

```
var sequantial = require('..');

var target = {
  list: ['a', 'b', 'c']
};

sequantial(target, 'list');

target.forEach(function(item){
  console.log(item);
});
```

# メソッド

## sequantial({Object} target, {String} listName)

tarageのプロパティの中で配列のものを対象にメソッドを実行できるように設定します

---
_Source: https://npm.io/package/cocotte-sequantial · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
