@garyp/common-object-x
Version:
34 lines (20 loc) • 512 B
JavaScript
const { CommonObjectx } = require('./CommonObjectx');
//---------------------------------------------------------------------
//---------------------------------------------------------------------
;
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;