fix: add additional check when converting delta to md

This commit is contained in:
thecodrr
2020-11-16 15:04:26 +05:00
parent caaa808174
commit ca03dd9483
3 changed files with 1 additions and 6 deletions

View File

@@ -23,7 +23,6 @@
"dependencies": {
"fast-sort": "^2.0.1",
"fuzzysearch": "^1.0.3",
"hypersearch": "https://github.com/streetwriters/hypersearch",
"jshashes": "^1.0.8",
"no-internet": "^1.5.2",
"qclone": "^1.0.4",

View File

@@ -2,7 +2,7 @@ import { buildPage } from "../helper";
import MDTemplate from "./template";
function createMetaTag(name, content) {
if (content.length <= 0) return "";
if (!content || content.length <= 0) return "";
return `[nn-${name}]:- "${content}"`;
}

View File

@@ -2703,10 +2703,6 @@ http-signature@~1.2.0:
jsprim "^1.2.2"
sshpk "^1.7.0"
"hypersearch@https://github.com/streetwriters/hypersearch":
version "0.0.1"
resolved "https://github.com/streetwriters/hypersearch#bbeac8ad63c3f70e94dfd05b0f00f44ecc989a19"
iconv-lite@0.4.24:
version "0.4.24"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"