mirror of
https://github.com/vale981/grapher
synced 2025-03-07 02:21:43 -05: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;
|
|
}
|
|
} |