UNPKG

@hedhog/utils

Version:

<p align="center"> <img src="https://avatars.githubusercontent.com/u/177489127?s=200&v=4" alt="Hedhog Avatar" /> </p>

14 lines (11 loc) 287 B
export const getLocalesFromItem = (item: any) => { if (item) { const fields: string[] = []; for (const itemLocale of (item as any).locale ?? []) { fields.push(itemLocale.locale.code); } return [...new Set(fields)]; } else { return []; } };