mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-24 09:25:15 +00:00
12 lines
204 B
JavaScript
12 lines
204 B
JavaScript
'use strict';
|
|
|
|
const Container = require('./container');
|
|
|
|
module.exports = class Value extends Container {
|
|
constructor (opts) {
|
|
super(opts);
|
|
this.type = 'value';
|
|
this.unbalanced = 0;
|
|
}
|
|
};
|