Skip to content

Instantly share code, notes, and snippets.

@SaDLiF
SaDLiF / online.js
Last active October 16, 2025 10:08
//11.10.2025 - Fix
(function () {
'use strict';
function startsWith(str, searchString) {
return str.lastIndexOf(searchString, 0) === 0;
}
function endsWith(str, searchString) {