UNPKG

twrnc

Version:
10 lines (9 loc) 286 B
import { complete } from '../helpers'; const ALLOWED_VALUES = [`solid`, `double`, `dotted`, `dashed`]; export default function textDecorationStyle(value) { if (!ALLOWED_VALUES.includes(value)) return null; return complete({ textDecorationStyle: value, }); }