# itheima_toolsycc

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

Latest version **1.0.0** (published 2022-10-18) · ISC license · 0 weekly downloads

## Install

```sh
npm install itheima_toolsycc
pnpm add itheima_toolsycc
yarn add itheima_toolsycc
bun add itheima_toolsycc
```

## 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-10-18 |
| First published | 2022-10-18 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 2.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | changchunyuan |
| Keywords | itheima, ycc, escape |

## Links

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

## Recent versions

- 1.0.0 (latest) — 2022-10-18

## README

## 安装
```
npm install itheima_toolsycc
```

## 导入
```
const itheima = require('itheima_toolsycc')
```

## 格式化时间
```js
// 调用 dataFormat 对时间进行格式化
const di = itheima.dataFormat(new Date())
//结果
console.log(di);
```

## 转义  HTML 中的特殊字符
```js
// 定义待转换的HTML字符
const htmlStr = '<h1 title="avc" >这是h1标签 <span>123&nbsp;</span></h1>'
// 调用 htmlEscape 方法进行转换
const str = itheima.htmlEscape(htmlStr)
//转换的结果  &lt;h1 title=&quot;avc&quot; &gt;这是h1标签 &lt;span&gt;123&ampnbsp;&lt;/span&gt;&lt;/h1&gt;
console.log(str);
```

## 还原  HTML 中的特殊字符
```js
// 定义待转换的HTML字符
// 待还原的HTML字符
const str = '&lt;h1 title=&quot;avc&quot; &gt;这是h1标签 &lt;span&gt;123&ampnbsp;&lt;/span&gt;&lt;/h1&gt;'
const str2= itheima.htmlUnEscape(str)
//结果
console.log(str2);
```

## 开源协议
ISC

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