UNPKG

308 BJavaScriptView Raw
1
2/** The symbol module contains regular expressions and functions for parsing and composing SignWriting in Unicode 8 (uni8) characters.
3 * @module symbol
4 */
5
6import { re } from './symbol-re';
7import { parse } from './symbol-parse';
8import { compose } from './symbol-compose';
9
10export { re, parse, compose }