UNPKG

@garyp/common-object-x

Version:
34 lines (20 loc) 512 B
const { CommonObjectx } = require('./CommonObjectx'); //--------------------------------------------------------------------- //--------------------------------------------------------------------- "use strict"; class Booleanx extends CommonObjectx { constructor() { super(); } /* -- static methods -- defT */ printDetailsOn(strm) { strm.show(this.asString()); } //Class Methods static defT() { return this.on(true) } } exports.Booleanx = Booleanx;