UNPKG

@nativescript/core

Version:

A JavaScript library providing an easy to use api for interacting with iOS and Android platform APIs.

19 lines 519 B
import { Color } from '../../color'; import { parseCSSShorthand } from './css-utils'; /** * Parse a string into StrokeCSSValues * https://developer.mozilla.org/en-US/docs/Web/CSS/-webkit-text-stroke * @param value */ export function parseCSSStroke(value) { const data = parseCSSShorthand(value); if (!data) { return null; } const [width] = data.values; return { width, color: data.color ? new Color(data.color) : undefined, }; } //# sourceMappingURL=css-stroke.js.map