# typescript-lodash

> A TypeScript Utility Types lib

Latest version **0.2.2** (published 2022-12-06) · MIT license · 0 weekly downloads

## Install

```sh
npm install typescript-lodash
pnpm add typescript-lodash
yarn add typescript-lodash
bun add typescript-lodash
```

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.2.2 |
| Published | 2022-12-06 |
| First published | 2022-02-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 52.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 73 |
| Author | kawayilinlin |
| Maintainers | kawayilinlin |
| Keywords | typescript, Utility, Types, tool, util, ts, TS, TypeScript |

## Links

- npm: https://www.npmjs.com/package/typescript-lodash
- Repository: https://github.com/kawayiLinLin/typescript-lodash
- Homepage: https://kawayiLinLin.github.io/typescript-lodash
- Issues: https://github.com/kawayiLinLin/typescript-lodash/issues
- npm.io page: https://npm.io/package/typescript-lodash

## Alternatives

- [lodash.assign](https://npm.io/package/lodash.assign.md) — 2.3M weekly downloads
- [lodash.chunk](https://npm.io/package/lodash.chunk.md) — 1.8M weekly downloads
- [react-native-ios-utilities](https://npm.io/package/react-native-ios-utilities.md) — 138.5K weekly downloads
- [@technically/lodash](https://npm.io/package/@technically/lodash.md) — 50.9K weekly downloads
- [@fluid-topics/ft-icon](https://npm.io/package/@fluid-topics/ft-icon.md) — 20.6K weekly downloads

## Recent versions

- 0.2.2 (latest) — 2022-12-06
- 0.2.1 — 2022-12-06
- 0.2.0 — 2022-11-30
- 0.1.0 — 2022-11-29
- 0.0.12 — 2022-08-10
- 0.0.11 — 2022-07-14
- 0.0.10 — 2022-05-30
- 0.0.9 — 2022-05-27
- 0.0.8 — 2022-04-06
- 0.0.7 — 2022-04-02
- 0.0.6 — 2022-02-06
- 0.0.5 — 2022-02-03
- 0.0.4 — 2022-02-03
- 0.0.3 — 2022-02-03
- 0.0.2 — 2022-02-03
- … 1 more at https://npm.io/package/typescript-lodash/versions

## README

### 写 TS 像写 JS 一样容易

[![OSCS Status](https://www.oscs1024.com/platform/badge/kawayiLinLin/typescript-lodash.svg?size=small)](https://www.oscs1024.com/project/kawayiLinLin/typescript-lodash?ref=badge_small) [![NPM URL](https://img.shields.io/badge/npm-v6.14.12-1577b4)](https://www.npmjs.com/package/typescript-lodash) [![Typescript Limit](https://img.shields.io/badge/TypeScript->=4.8.2-1577b4)](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-4-5.html) [![NPM URL](https://img.shields.io/badge/license-MIT-8fba29)](https://www.npmjs.com/package/typescript-lodash)

Make writing TypeScript as easy as writing JavaScript

安装 Install

```bash
yarn add typescript-lodash # or：npm install --save typescript-lodash
```

使用 Usage

```ts
import { string } from "typescript-lodash"
// or use `import * as t from "typescript-lodash"` and then `t.string.Split<"">`
// or use `import { Split } from "typescript-lodash/lib/string"` and then `Split<"">`

type IString = "今天很高兴"

type TypeExample = string.Split<IString, "">

// 得到
type TypeResult = ["今", "天", "很", "高", "兴"]
```

查看文档 Documentation

[中文文档 Chinese Documentation](https://kawayilinlin.github.io/typescript-lodash/)

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