all-named-html-entities 3.1.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -2
- package/LICENSE +1 -1
- package/README.md +7 -20
- package/dist/all-named-html-entities.esm.js +3 -3
- package/dist/all-named-html-entities.umd.js +2 -2
- package/package.json +20 -21
- package/types/index.d.ts +16 -12
- package/.eslintcache +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,11 +3,22 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
## 3.
|
|
6
|
+
## 3.2.0 (2026-08-19)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- resolve review findings REV-004 through REV-007 ([b60e9ee](https://github.com/codsen/codsen/commit/b60e9eeb499af94685cfb87b4970fe025be1fc10))
|
|
11
|
+
- retire direct publish aliases ([f98e31e](https://github.com/codsen/codsen/commit/f98e31eb89bc185471225664e610b55f34fbf648))
|
|
7
12
|
|
|
8
13
|
### Features
|
|
9
14
|
|
|
10
|
-
-
|
|
15
|
+
- add codsen-glob and migrate glob consumers ([5595a2b](https://github.com/codsen/codsen/commit/5595a2b267eaa6cb60072d037aef00b7a28edd42))
|
|
16
|
+
- refresh the tooling and generate with the latest dependencies ([781f802](https://github.com/codsen/codsen/commit/781f802911066a82a4533b0e5a3fcbd742d0dd83))
|
|
17
|
+
|
|
18
|
+
### Reverts
|
|
19
|
+
|
|
20
|
+
- Revert "Merge pull request #128 from codsen/release/npm-32198404552-1" ([5baeeaa](https://github.com/codsen/codsen/commit/5baeeaaa677b86f1eaa6396cadf3aea32b06416e)), closes [#128](https://github.com/codsen/codsen/issues/128)
|
|
21
|
+
- Revert "Merge pull request #127 from codsen/release/npm-32194020886-1" ([5f1e94d](https://github.com/codsen/codsen/commit/5f1e94deef910ce735266b16aeee08a76de7a862)), closes [#127](https://github.com/codsen/codsen/issues/127)
|
|
11
22
|
|
|
12
23
|
## 3.0.0 (2022-12-01)
|
|
13
24
|
|
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright © 2010-
|
|
3
|
+
Copyright © 2010-2026 Roy Revelt and other contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
6
|
a copy of this software and associated documentation files (the
|
package/README.md
CHANGED
|
@@ -32,27 +32,14 @@ npm i all-named-html-entities
|
|
|
32
32
|
## Quick Take
|
|
33
33
|
|
|
34
34
|
```js
|
|
35
|
-
import { strict as assert } from "assert";
|
|
36
|
-
|
|
37
|
-
import {
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
allNamedEntitiesSetOnlyCaseInsensitive,
|
|
41
|
-
entStartsWith,
|
|
42
|
-
entEndsWith,
|
|
43
|
-
entStartsWithCaseInsensitive,
|
|
44
|
-
entEndsWithCaseInsensitive,
|
|
45
|
-
brokenNamedEntities,
|
|
46
|
-
decode,
|
|
47
|
-
minLength,
|
|
48
|
-
maxLength,
|
|
49
|
-
uncertain,
|
|
50
|
-
} from "all-named-html-entities";
|
|
51
|
-
|
|
52
|
-
assert.equal(Object.keys(allNamedEntities).length, 2125);
|
|
53
|
-
assert.equal(entStartsWith.A.E[0], "AElig");
|
|
35
|
+
import { strict as assert } from "node:assert";
|
|
36
|
+
|
|
37
|
+
import { allNamedEntities } from "all-named-html-entities";
|
|
38
|
+
|
|
39
|
+
assert.equal(allNamedEntities.AElig, "Æ");
|
|
54
40
|
```
|
|
55
41
|
|
|
42
|
+
|
|
56
43
|
## Documentation
|
|
57
44
|
|
|
58
45
|
Please [visit codsen.com](https://codsen.com/os/all-named-html-entities/) for a full description of the API. If you’re looking for the **Changelog**, it’s [here](https://github.com/codsen/codsen/blob/main/packages/all-named-html-entities/CHANGELOG.md).
|
|
@@ -65,6 +52,6 @@ To report bugs or request features or assistance, [raise an issue](https://githu
|
|
|
65
52
|
|
|
66
53
|
MIT License
|
|
67
54
|
|
|
68
|
-
Copyright © 2010-
|
|
55
|
+
Copyright © 2010-2026 Roy Revelt and other contributors
|
|
69
56
|
|
|
70
57
|
<p align="center"><img src="https://codsen.com/images/png-codsen-ok.png" width="98" alt="ok" align="center"> <img src="https://codsen.com/images/png-codsen-1.png" width="148" alt="codsen" align="center"> <img src="https://codsen.com/images/png-codsen-star-small.png" width="32" alt="star" align="center"></p>
|