UNPKG

@osh-branches/osh-js

Version:
10 lines (7 loc) 260 B
import AbstractParser from "../AbstractParser"; class StringParser extends AbstractParser { parse(dataTypeParser, props, resultParent) { resultParent[this.name] = dataTypeParser.nextToken(this.path); } } export default StringParser;