# big-web-tools

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

Latest version **1.0.0** (published 2022-02-08) · ISC license · 0 weekly downloads

## Install

```sh
npm install big-web-tools
pnpm add big-web-tools
yarn add big-web-tools
bun add big-web-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-02-08 |
| First published | 2022-02-08 |
| 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 | alertcai |
| Keywords | web, tools, format, dateFormat |

## Links

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

## Alternatives

- [@opentelemetry/exporter-zipkin](https://npm.io/package/@opentelemetry/exporter-zipkin.md) — 14.8M weekly downloads
- [pusher-js](https://npm.io/package/pusher-js.md) — 2.0M weekly downloads
- [browserify](https://npm.io/package/browserify.md) — 1.7M weekly downloads
- [sqs-consumer](https://npm.io/package/sqs-consumer.md) — 1.7M weekly downloads
- [@sanity/eventsource](https://npm.io/package/@sanity/eventsource.md) — 930.8K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2022-02-08

## README

## 安装
```
npm install big-web-tools
```

## 导入
``` js
const tools = require('big-web-tools');
```

## 格式化时间
```js
// 格式化时间的功能
const dt = new Date();
const newDT = tools.dateFormat(dt);
// 结果：2022-02-08 13:24:29
console.log(newDT);
```

## 转义HTML中的特殊字符
```js
// 带转换的HTML字符串
const htmlStr = '<h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>';
const str = tools.htmlEscape(htmlStr);
// 结果：&lt;h1 title=&quot;abc&quot;&gt;这是h1标签&lt;span&gt;123&amp;nbsp;&lt;/span&gt;&lt;/h1&gt;
console.log(str);
```

## 还原HTML中的特殊字符
```js
const str2 = tools.htmlUnEscape(str);
// 结果：<h1 title="abc">这是h1标签<span>123&nbsp;</span></h1>
console.log(str2);
```

## 开源协议
ISC

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