Sha256: 9cf62e0f93aea89151be6187bc5b15947352704658087a9e490413accf094463

Contents?: true

Size: 357 Bytes

Versions: 7

Compression:

Stored size: 357 Bytes

Contents

/**
 * Provides a single function for parsing an expression using a Parser
 * TODO(emily): Remove this
 */

var Parser = require("./Parser");

/**
 * Parses an expression using a Parser, then returns the parsed result.
 */
var parseTree = function(toParse) {
    var parser = new Parser(toParse);

    return parser.parse();
};

module.exports = parseTree;

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
hyhyhy-1.0.0 lib/hyhyhy/structure/_includes/katex/src/parseTree.js
hyhyhy-0.0.9 lib/hyhyhy/structure/_includes/katex/src/parseTree.js
hyhyhy-0.0.8 lib/hyhyhy/structure/_includes/katex/src/parseTree.js
hyhyhy-0.0.7 lib/hyhyhy/structure/_includes/katex/src/parseTree.js
hyhyhy-0.0.6 lib/hyhyhy/structure/_includes/katex/src/parseTree.js
hyhyhy-0.0.5 lib/hyhyhy/structure/_includes/katex/src/parseTree.js
hyhyhy-0.0.4 lib/hyhyhy/structure/_includes/katex/src/parseTree.js