Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
m4lab_tv1
Project Page
Commits
be9dd195
Commit
be9dd195
authored
2 years ago
by
Rosanny Sihombing
Browse files
Options
Download
Email Patches
Plain Diff
clean up codes
parent
55b6ba20
testing
devel
1 merge request
!88
Restructure the codes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
utils/helpers.ts
+2
-5
utils/helpers.ts
with
2 additions
and
5 deletions
+2
-5
utils/helpers.ts
+
2
-
5
View file @
be9dd195
const
helpers
=
{
stringToArray
:
function
(
input
:
string
)
{
if
(
input
!=
null
)
{
return
input
.
split
(
'
,
'
)
}
else
{
return
null
}
if
(
!
input
)
{
return
null
}
return
input
.
split
(
'
,
'
)
}
}
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets