@warp-ds/uno
Advanced tools
Comparing version 0.0.8 to 0.0.9
{ | ||
"name": "@warp-ds/uno", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "exports": { |
@@ -42,2 +42,16 @@ import { toArray, warnOnce } from '@unocss/core'; | ||
} | ||
export function splitShorthand(body, type) { | ||
const split = body.split(/(?:\/|:)/) | ||
if (split[0] === `[${type}`) { | ||
return [ | ||
split.slice(0, 2).join(':'), | ||
split[2], | ||
] | ||
} | ||
return split | ||
} | ||
/** | ||
@@ -44,0 +58,0 @@ * Parse color string into {@link ParsedColorValue} (if possible). Color value will first be matched to theme object before parsing. |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
219116
3761