@sutton-signwriting/core
Version:
a javascript package for node and browsers that supports general processing of the Sutton SignWriting script
14 lines (10 loc) • 520 B
JavaScript
/** The style module contains regular expressions and functions for parsing and composing style strings.
* [Style string definition](https://tools.ietf.org/id/draft-slevinski-formal-signwriting-09.html#name-styling-string)
* @module style
*/
import { re } from './style-re';
import { parse } from './style-parse';
import { compose } from './style-compose';
import { merge } from './style-merge';
import { rgb2hex, rgba2hex } from './style-rgb';
export { re, parse, compose, merge, rgb2hex, rgba2hex }