1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-11-10 01:19:53 +01:00
unleash.unleash/frontend/src/utils/parseParameter.ts
Nuno Góis 4167a60588
feat: biome lint frontend (#4903)
Follows up on https://github.com/Unleash/unleash/pull/4853 to add Biome
to the frontend as well.


![image](https://github.com/Unleash/unleash/assets/14320932/1906faf1-fc29-4172-a4d4-b2716d72cd65)

Added a few `biome-ignore` to speed up the process but we may want to
check and fix them in the future.
2023-10-02 13:25:46 +01:00

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);
};