UNPKG

389 BJavaScriptView Raw
1
2/** The style module contains regular expressions and functions for parsing and composing style strings.
3 * [Style string definition](https://tools.ietf.org/id/draft-slevinski-formal-signwriting-07.html#rfc.section.2.5)
4 * @module style
5 */
6
7import { re } from './style-re';
8import { parse } from './style-parse';
9import { compose } from './style-compose';
10
11export { re, parse, compose }