Merge branch 'main' of github.com:AmruthPillai/Reactive-Resume

This commit is contained in:
Amruth Pillai 2025-10-01 11:21:09 +02:00
commit c54cfebf5f
No known key found for this signature in database

View File

@ -23,4 +23,4 @@ export const parseCSV = async (string: string) => {
* @returns
*/
export const parseArrayLikeCSVEntry = (csvEntry: string) =>
csvEntry.replace(/^\[/, "").replace(/$]/, "").split(",");
csvEntry.replace(/^\[/, "").replace(/\]$/, "").split(",");