@mjhls/mjh-framework 1.0.188 → 1.0.189
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/README.md +1 -1
- package/dist/index.es.js +5 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10230,6 +10230,10 @@ var html_map = {
|
|
|
10230
10230
|
};
|
|
10231
10231
|
|
|
10232
10232
|
var html_decode = function html_decode(string) {
|
|
10233
|
+
if (!string) {
|
|
10234
|
+
return string;
|
|
10235
|
+
}
|
|
10236
|
+
|
|
10233
10237
|
var entityMap = html_map;
|
|
10234
10238
|
for (var key in entityMap) {
|
|
10235
10239
|
var entity = entityMap[key];
|