mirror of
https://github.com/vale981/grapher
synced 2025-03-06 10:01:40 -05:00
11 lines
No EOL
260 B
JavaScript
11 lines
No EOL
260 B
JavaScript
export default class FieldNode {
|
|
constructor(name, body) {
|
|
this.name = name;
|
|
this.body = _.isObject(body) ? 1 : body;
|
|
this.scheduledForDeletion = false;
|
|
}
|
|
|
|
applyFields(fields) {
|
|
fields[this.name] = this.body;
|
|
}
|
|
} |