dbm
Version:
25 lines (17 loc) • 400 B
JavaScript
import Dbm from "../index.js";
export default class LifeCycleObject {
constructor() {
if(process.env.NODE_ENV === "development") {
this._debugId = Math.round(Math.random()*1000000000000);
}
this._constructProperties();
this._construct();
}
_constructProperties() {
}
_construct() {
}
destroy() {
//METODO
}
}