function startsWith(str, target, position = 0) { return str.startsWith(target, position); } export { startsWith };