function startsWithimport { startsWith } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/string.js"; startsWith(string,target,position,)Checks if string starts with the given target string. Examples_.startsWith('abc', 'a'); // => true _.startsWith('abc', 'b'); // => false _.startsWith('abc', 'b', 1); // => true Parametersstringtargetposition