Updates
Release rolling / release (push) Successful in 7m19s

This commit is contained in:
Raven Scott
2026-07-31 12:34:03 -04:00
parent 33937db11c
commit 633fe22bff
8 changed files with 156 additions and 109 deletions
+19
View File
@@ -0,0 +1,19 @@
'use strict'
/**
* Stub pear-ref for Bare standalone builds (pear-ref throws without Pear).
* Seeder/booter host binaries use Hyperdrive/Corestore directly, not Pear appdrive.
*/
class Ref {
constructor() {
this._value = null
}
get value() {
return this._value
}
set value(v) {
this._value = v
}
}
module.exports = Ref
module.exports.Ref = Ref