We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f593882 commit a2eba55Copy full SHA for a2eba55
src/proto.js
@@ -31,18 +31,23 @@ export function setupToJsonURLText({
31
}) {
32
Object.defineProperty(Array.prototype, "toJsonURLText", {
33
value: toJsonURLText_Array,
34
+ configurable: true
35
});
36
Object.defineProperty(Boolean.prototype, "toJsonURLText", {
37
value: toJsonURLText_Boolean,
38
39
40
Object.defineProperty(Number.prototype, "toJsonURLText", {
41
value: toJsonURLText_Number,
42
43
44
Object.defineProperty(Object.prototype, "toJsonURLText", {
45
value: toJsonURLText_Object,
46
47
48
Object.defineProperty(String.prototype, "toJsonURLText", {
49
value: toJsonURLText_String,
50
51
52
}
53
0 commit comments