mirror of
https://github.com/Kornstalx/5etools-mirror-2.github.io.git
synced 2025-10-28 20:45:35 -05:00
8 lines
253 B
JavaScript
8 lines
253 B
JavaScript
export class BrewUtilShared {
|
|
/** Prevent any injection shenanigans */
|
|
static getValidColor (color, {isExtended = false} = {}) {
|
|
if (isExtended) return color.replace(/[^-a-zA-Z\d]/g, "");
|
|
return color.replace(/[^a-fA-F\d]/g, "").slice(0, 8);
|
|
}
|
|
}
|