1 line
128 B
JavaScript
1 line
128 B
JavaScript
export const isFipsRegion = (region) => typeof region === "string" && (region.startsWith("fips-") || region.endsWith("-fips"));
|