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

clean up codes

parent 55b6ba20
const helpers = {
stringToArray: function (input: string) {
if (input != null) {
return input.split(',')
} else {
return null
}
if (!input) { return null }
return input.split(',')
}
}
......
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