# cpy-tools

> 提供了格式化时间,HTMLEscape相关功能

Latest version **1.0.0** (published 2022-11-20) · ISC license · 0 weekly downloads

## Install

```sh
npm install cpy-tools
pnpm add cpy-tools
yarn add cpy-tools
bun add cpy-tools
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2022-11-20 |
| First published | 2022-11-20 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.6 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | chenpanyu |
| Keywords | cpy, dataFormat, escape |

## Links

- npm: https://www.npmjs.com/package/cpy-tools
- npm.io page: https://npm.io/package/cpy-tools

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2022-11-20

## README

## 安装
```
npm i cpy-tools
```

## 导入
```js
const cpy=require('./cpy-tools/index')
```

## 格式化时间
```js
// 调用dateFormat对时间进行格式化
const dtStr=cpy.dateFormat(new Date())
console.log(dtStr);
// 结果 2022-11-20 12:58:41
```


## 转义HTML中的特殊字符
```js
// 带转义的HTML字符串
const htmlStr='<h1 title="abc"><span>123</span><h1>'
// 调用htmlEscape方法进行转换
const str=cpy.htmlEscape(htmlStr)
console.log(str);
// 结果 &lt;h1 title=&quot;abc&quot;&gt;&lt;span&gt;123&lt;/span&gt;&lt;h1&gt;
```


## 还原HTML中的特殊字符
```js
// 带还原的HTML字符串
const htmlStr1='&lt;h1 title=&quot;abc&quot;&gt;&lt;span&gt;123&lt;/span&gt;&lt;h1&gt;'
// 调用htmlUnEscape方法进行转换
const str1=cpy.htmlUnEscape(htmlStr1)
console.log(str1);
// 结果 <h1 title="abc"><span>123</span><h1>
```

## 开源协议
ISC

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