@masala/parser
Version:
Masala Parser
20 lines (17 loc) • 538 B
JavaScript
/*
* Masala Parser
* https://github.com/masala/masala-parser
*
* Copyright (c) 2016-2025 Didier Plaindoux & Nicolas Zozol
* Licensed under the LGPL3 license.
*/
import stringStreamFactory from './stringstream.js'
import arrayStreamFactory from './arraystream.js'
import parserStreamFactory from './parserstream.js'
import bufferedStreamFactory from './bufferedstream.js'
export default {
ofString: stringStreamFactory,
ofArray: arrayStreamFactory,
ofParser: parserStreamFactory,
buffered: bufferedStreamFactory,
}