yarn package upgrades, ssr update
All checks were successful
deploy to production / deploy (push) Successful in 45s

This commit is contained in:
2023-11-15 07:00:12 +00:00
parent 94ff85fbe1
commit 86e0a17265
326 changed files with 2277 additions and 1839 deletions

View File

@@ -6,38 +6,6 @@ function log(str) {
console.log(JSON.stringify(str, undefined, 4))
}
/**
* convert object to string
* @param {any} obj object
*/
function obj2str(obj) {
if (Array.isArray(obj)) {
return JSON.stringify(
obj.map(function (idx) {
return obj2str(idx)
})
)
} else if (typeof obj === "object" && obj !== null) {
var elements = Object.keys(obj)
.sort()
.map(function (key) {
var val = obj2str(obj[key])
if (val) {
return key + ":" + val
}
})
var elementsCleaned = []
for (var i = 0; i < elements.length; i++) {
if (elements[i]) elementsCleaned.push(elements[i])
}
return "{" + elementsCleaned.join("|") + "}"
}
if (obj) return obj
}
/**
* clear SSR cache
*/
@@ -49,5 +17,4 @@ function clearSSRCache() {
module.exports = {
log,
clearSSRCache,
obj2str,
}