7 lines
210 B
TypeScript
7 lines
210 B
TypeScript
|
|
export const formatNumberPlate = (plate: string) => {
|
||
|
|
const splittedPlate = plate?.split("");
|
||
|
|
splittedPlate?.splice(4, 0, " ");
|
||
|
|
const formattedPlate = splittedPlate?.join("");
|
||
|
|
return formattedPlate;
|
||
|
|
};
|