djLint/docs/node_modules/es5-ext/string/#/repeat/implement.js
2021-12-14 09:57:37 +01:00

10 lines
201 B
JavaScript

"use strict";
if (!require("./is-implemented")()) {
Object.defineProperty(String.prototype, "repeat", {
value: require("./shim"),
configurable: true,
enumerable: false,
writable: true
});
}