Latest
function default
import { default } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/repeat.js";

Repeats the given string n times.

Examples

_.repeat('', 3); // => '**'

_.repeat('abc', 2); // => 'abcabc'

_.repeat('abc', 0); // => ''

Parameters

string
n
guard