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