mirror of
https://codeberg.org/ashley/poke
synced 2025-04-05 17:17:59 +00:00
fix some stuff :3
This commit is contained in:
parent
a8a98b0ba3
commit
911eebf02f
@ -28,9 +28,9 @@ function convert(value) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function getFirstLine(text) {
|
function getFirstLine(text) {
|
||||||
var index = text.indexOf("<br> ");
|
var index = text?.indexOf("<br> ");
|
||||||
if (index === -1) index = undefined;
|
if (index === -1) index = undefined;
|
||||||
return text.substring(0, index);
|
return text?.substring(0, index);
|
||||||
}
|
}
|
||||||
|
|
||||||
function capitalizeFirstLetter(string) {
|
function capitalizeFirstLetter(string) {
|
||||||
|
Loading…
Reference in New Issue
Block a user