2
0
Files

6 lines
160 B
TypeScript
Raw Permalink Normal View History

2024-08-09 00:39:27 +02:00
import type { Field } from "../types/types";
const getFieldIdentifier = (field: Field) => field.identifier || field.label;
export default getFieldIdentifier;