cleanup, docs

This commit is contained in:
root
2026-06-16 12:21:31 +00:00
parent dff1959341
commit ea08d5f28b
296 changed files with 1571 additions and 1940 deletions
+2 -3
View File
@@ -12,7 +12,6 @@ return value : `true` when `haystack` ends with `needle`, otherwise `false`
:content
Checks whether `haystack` ends with `needle`.
Related:
- PHP: `str_ends_with()`
- JavaScript / Node.js: `String.prototype.endsWith()`
:example
print(str_ends_with("index.uce", ".uce") ? "yes\n" : "no\n");