mirror of
https://github.com/Mintplex-Labs/bree.git
synced 2026-07-01 20:04:39 -04:00
15 lines
237 B
JavaScript
15 lines
237 B
JavaScript
class Script {
|
|
constructor(config) {
|
|
config = { ...config };
|
|
this._name = config.name || 'script';
|
|
|
|
this.renderName = this.renderName.bind(this);
|
|
}
|
|
|
|
renderName() {
|
|
return this._name;
|
|
}
|
|
}
|
|
|
|
module.exports = Script;
|