Implement LazyArray.splice(), implement unshift/shift/push/pop in terms of splice...
[logjson.git] / CachedValue.mjs
1 class CachedValue {
2   constructor(refs, value, stale_count) {
3     this.refs = refs
4     this.value = value
5     this.stale_count = stale_count
6   }
7 }
8
9 export default CachedValue