mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-26 04:01:17 -04:00
10 lines
197 B
JavaScript
10 lines
197 B
JavaScript
"use strict";
|
|
|
|
if (!require("./is-implemented")()) {
|
|
Object.defineProperty(String.prototype, "repeat",
|
|
{ value: require("./shim"),
|
|
configurable: true,
|
|
enumerable: false,
|
|
writable: true });
|
|
}
|