UNPKG

godprotocol

Version:

A distributed computing environment for Web 4.0 — integrating AI, decentralisation, and virtual computation.

17 lines (12 loc) 281 B
import Storage from "./functions/storage.js"; class Bool extends Storage { constructor(config, account) { super(config, account); this.config = config this.type = 'boolean' } literal = ()=>{ return JSON.parse(this.config.value) } } export default Bool;