mirror of
https://github.com/wowlikon/LiB.git
synced 2026-02-04 04:31:09 +00:00
Добавление количества страниц книгам
This commit is contained in:
@@ -19,8 +19,8 @@ const StorageHelper = {
|
||||
|
||||
const Utils = {
|
||||
escapeHtml: (text) => {
|
||||
if (!text) return "";
|
||||
return text.replace(
|
||||
if (text === null || text === undefined) return "";
|
||||
return String(text).replace(
|
||||
/[&<>"']/g,
|
||||
(m) =>
|
||||
({
|
||||
|
||||
Reference in New Issue
Block a user