Move net2 to net, update dvm

This commit is contained in:
Jon Staab
2025-03-31 09:13:10 -07:00
parent 3081d1e6b4
commit 7389b3a6c3
67 changed files with 819 additions and 6330 deletions
+3 -2
View File
@@ -424,12 +424,13 @@ export const truncate = (
currentSize += size
if (currentSize > minLength) {
content = content.slice(0, Math.max(1, i)).concat({type: ParsedType.Ellipsis, value: "…", raw: ""})
content = content
.slice(0, Math.max(1, i))
.concat({type: ParsedType.Ellipsis, value: "…", raw: ""})
return false
}
return true
})