# pale-hand

> A JavaScript tool library

Latest version **1.0.2** (published 2021-08-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install pale-hand
pnpm add pale-hand
yarn add pale-hand
bun add pale-hand
```

## Health

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

Positive: has types; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2021-08-07 |
| First published | 2021-08-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 58.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Jack M |
| Maintainers | fools |
| Keywords | Utils, function |

## Links

- npm: https://www.npmjs.com/package/pale-hand
- npm.io page: https://npm.io/package/pale-hand

## Dependencies (1)

- [pale-hand](https://npm.io/package/pale-hand.md) ^1.0.0

## Recent versions

- 1.0.2 (latest) — 2021-08-07
- 1.0.1 — 2021-08-07
- 1.0.0 — 2021-08-05

## README

## pale-hand

一些常用的Javascript工具函数，可以简化我们日常的很多操作


## Install

```
npm i pale-hand -S
```

## Usage

### 导入

```javascript
// CommonJS
const _ = require('pale-hand').default;
// ES6
import * as _ from 'pale-hand';

```

### 普通调用

```javascript

// 6
_.add(1, 2, 3);

```

### 链式调用

```javascript

// [1, 4, 6]
_.chain([1, 2, 3])
.map(item => item * 2)
.forEach(item => console.log(item))
.exec();


```

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