muschema
Version:
Schemas for mudb
22 lines • 719 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var MuNumber = (function () {
function MuNumber(value, type) {
this.identity = value;
this.muType = type;
this.json = {
type: this.muType,
identity: this.identity,
};
}
MuNumber.prototype.alloc = function () { return this.identity; };
MuNumber.prototype.free = function (_) { };
MuNumber.prototype.equal = function (x, y) {
return x === y;
};
MuNumber.prototype.clone = function (x) { return x; };
MuNumber.prototype.copy = function (source, target) { };
return MuNumber;
}());
exports.MuNumber = MuNumber;
//# sourceMappingURL=_number.js.map