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