function wordsimport { words } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/string.js"; words(string,pattern,guard,)Splits string into an array of its words. Examples_.words('fred, barney, & pebbles'); // => ['fred', 'barney', 'pebbles'] _.words('fred, barney, & pebbles', /[^, ]+/g); // => ['fred', 'barney', '&', 'pebbles'] Parametersstringpatternguard