Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Markus Opolka
vue-cdbp
Commits
8b085aa6
Commit
8b085aa6
authored
Dec 20, 2018
by
Markus Opolka
Browse files
Remove dead code
parent
b356dab3
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib.js
View file @
8b085aa6
...
...
@@ -143,30 +143,6 @@ function searchFeaturesInDocument (document, query) {
return
document
}
function
featureToString
(
feature
)
{
/*
* Turn into feature object into category>type>subtype String
*/
let
category
=
feature
.
category
let
type
=
feature
.
type
let
subtype
=
feature
.
subtype
let
ret
=
''
if
(
category
!==
undefined
)
{
ret
=
ret
.
concat
(
category
)
}
if
(
type
!==
undefined
)
{
ret
=
ret
.
concat
(
'
>
'
,
type
)
}
if
(
subtype
!==
undefined
)
{
ret
=
ret
.
concat
(
'
>
'
,
subtype
)
}
return
ret
}
function
featureGlossary
(
objs
)
{
/*
* Turn list of documents objects into a glossary set
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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