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

clean up codes

1 merge request!88Restructure the codes
Showing with 2 additions and 5 deletions
+2 -5
const helpers = {
stringToArray: function (input: string) {
if (input != null) {
return input.split(',')
} else {
return null
}
if (!input) { return null }
return input.split(',')
}
}
......
Supports Markdown
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