UNPKG

plural-forms-parser

Version:
9 lines (7 loc) 249 B
const parse = require('./reverse-polish-notation/interpreter'); const parseMemo = require('./reverse-polish-notation/interpreter-memoized'); module.exports = { parse, parseMemoized: parseMemo.parse, resetCache: parseMemo.resetCache, };