mirror of
https://github.com/Unleash/unleash.git
synced 2025-11-10 01:19:53 +01:00
Follows up on https://github.com/Unleash/unleash/pull/4853 to add Biome to the frontend as well.  Added a few `biome-ignore` to speed up the process but we may want to check and fix them in the future.
24 lines
640 B
TypeScript
24 lines
640 B
TypeScript
import { IFeatureStrategyParameters } from 'interfaces/strategy';
|
|
|
|
export const parseParameterNumber = (
|
|
value: IFeatureStrategyParameters[string],
|
|
): number => {
|
|
const parsed = Number(parseParameterString(value));
|
|
return Number.isFinite(parsed) ? parsed : 0;
|
|
};
|
|
|
|
export const parseParameterString = (
|
|
value: IFeatureStrategyParameters[string],
|
|
): string => {
|
|
return String(value ?? '').trim();
|
|
};
|
|
|
|
export const parseParameterStrings = (
|
|
value: IFeatureStrategyParameters[string],
|
|
): string[] => {
|
|
return parseParameterString(value)
|
|
.split(',')
|
|
.map((s) => s.trim())
|
|
.filter(Boolean);
|
|
};
|