Commit be9dd195 authored by Rosanny Sihombing's avatar Rosanny Sihombing
Browse files

clean up codes

parent 55b6ba20
const helpers = { const helpers = {
stringToArray: function (input: string) { stringToArray: function (input: string) {
if (input != null) { if (!input) { return null }
return input.split(',') return input.split(',')
} else {
return null
}
} }
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment