add man files; add mod hash checking; add text decoding for blob

This commit is contained in:
2025-06-02 11:10:18 -05:00
parent d9b316270d
commit f70f65d1c3
20 changed files with 1077 additions and 495 deletions

View File

@@ -276,6 +276,14 @@ function deepFreeze(object) {
globalThis.stone = deepFreeze
stone.p = function(object)
{
if (object instanceof blob) {
try {
object.read_logical(0)
return true
} catch(e) {
return false
}
}
return Object.isFrozen(object)
}