Files
bare-operating-system/build/stubs/pear-ref.cjs
T
Raven Scott 633fe22bff
Release rolling / release (push) Successful in 7m19s
Updates
2026-07-31 12:34:03 -04:00

20 lines
372 B
JavaScript

'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