"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.repeat = void 0;
const create_curried_1 = require("create-curried");
exports.repeat = (0, create_curried_1.curried)(String.prototype.repeat)
.takes(0)
.takesThis()
.generate();