# itheima-xiaosen

> ``` npm install itheima-tools ```

Latest version **1.0.0** (published 2022-04-16) · ISC license · 0 weekly downloads

## Install

```sh
npm install itheima-xiaosen
pnpm add itheima-xiaosen
yarn add itheima-xiaosen
bun add itheima-xiaosen
```

## 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-04-16 |
| First published | 2022-04-16 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | xiaosen1203 |
| Keywords | itheima, deteFormat, escape |

## Links

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

## 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-04-16

## README

## 安装
```
    npm install itheima-tools
```

## 导入
```js
cconst itheima=require("itheima-xiaosen")
```

## 格式化时间
```js
// 调用 itheima.deteFormat 对事件进行格式化
const dt= itheima.deteFormat(new Date())
console.log(dt)
// 输出结果 2022-4-16 19:08:52
```

## 转义HTML的特殊字符
```js
// 待转换的HTML字符串
const htmlStr1 = "<h1 title='abc'><span>这是h1标签123&nbsp;</span></h1>"
// 调用htmlEscoape 方法进行转换
const str=itheima.htmlEscope(htmlStr1)
// 转换的结果
`&lth1 title='abc'&gt&ltspan&gt这是h1标签123&amp;;nbsp;&lt/span&gt&lt/h1&gt`
//           < 》》 &lt        > 》》 &gt        " 》》 &quot          & 》》 &amp
```

## 还原HTML中的特殊字符
```js
//待转换的HTML字符串
const htmlStr2="&lth1 title='abc'&gt&ltspan&gt这是h1标签123&nbsp;&lt/span&gt&lt/h1&gt"
// 调用UnEscope方法进行转换
const str=itheima.UnhtmlEscope(htmlStr2)
// 转换的结果
<h1 title='abc'><span>这是h1标签123&nbsp;</span></h1>
```
qqQq
## 开源协议
ISC

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