mirror of
https://gitlab.com/MrFry/mrfrys-node-server
synced 2025-04-01 20:24:18 +02:00
Removed an assertion
This commit is contained in:
@@ -122,7 +122,9 @@ function answerPreProcessor(value) {
|
|||||||
|
|
||||||
// 'a. pécsi sör' -> 'pécsi sör'
|
// 'a. pécsi sör' -> 'pécsi sör'
|
||||||
function removeAnswerLetters(value) {
|
function removeAnswerLetters(value) {
|
||||||
assert(value)
|
if (!value) {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
let val = value.split('. ')
|
let val = value.split('. ')
|
||||||
if (val[0].length < 2 && val.length > 1) {
|
if (val[0].length < 2 && val.length > 1) {
|
||||||
|
|||||||
Reference in New Issue
Block a user