Sha256: cfe7be330207261c29613f40d307b774987ff22a679a262d52c24fb3920e5dfa
Contents?: true
Size: 512 Bytes
Versions: 13
Compression:
Stored size: 512 Bytes
Contents
/** * Contains helpers for safely splitting lists of CSS values, preserving * parentheses and quotes. */ declare module List { /** * Safely splits space-separated values (such as those for background, * border-radius and other shorthand properties). */ function space(str: string): string[]; /** * Safely splits comma-separated values (such as those for transition-* and * background properties). */ function comma(str: string): string[]; } export default List;
Version data entries
13 entries across 4 versions & 2 rubygems