jbilcke-hf's picture
jbilcke-hf HF staff
let's try dev mode
3165afb
raw
history blame
161 Bytes
export function parseArray(text: string) {
let array: string[] = []
try {
array = JSON.parse(text)
} catch (err) {
array = []
}
return array
}