function defaultimport { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/trim.js"; default(string,chars,guard,)Removes leading and trailing whitespace or specified characters from string. Examples_.trim(' abc '); // => 'abc' .trim('--abc--', '-'); // => 'abc' _.map([' foo ', ' bar '], _.trim); // => ['foo', 'bar'] Parametersstringcharsguard