Skip to content

Commit ab73795

Browse files
feat: add descriptions to removal type (#295)
* feat: add descriptions to `removal` type * chore: apply suggestions from code review
1 parent e949205 commit ab73795

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

manifests/native.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1108,7 +1108,7 @@
11081108
"es-errors": {
11091109
"id": "es-errors",
11101110
"type": "removal",
1111-
"description": "TODO",
1111+
"description": "Error and its subclasses are natively built into all modern environments.",
11121112
"url": {
11131113
"type": "mdn",
11141114
"id": "Web/JavaScript/Reference/Global_Objects/Error"
@@ -1117,7 +1117,7 @@
11171117
"es-string-html-methods": {
11181118
"id": "es-string-html-methods",
11191119
"type": "removal",
1120-
"description": "TODO",
1120+
"description": "All the methods exported by this modules are generally available on the String prototype in modern environments.",
11211121
"url": {
11221122
"type": "mdn",
11231123
"id": "Web/JavaScript/Reference/Global_Objects/String#html_wrapper_methods"
@@ -1151,7 +1151,7 @@
11511151
"has-proto": {
11521152
"id": "has-proto",
11531153
"type": "removal",
1154-
"description": "TODO",
1154+
"description": "Every modern environment has support for __proto__. You can just remove the check.",
11551155
"url": {
11561156
"type": "mdn",
11571157
"id": "Web/JavaScript/Reference/Operators/Object_initializer#prototype_setter"
@@ -1160,7 +1160,7 @@
11601160
"has-symbols": {
11611161
"id": "has-symbols",
11621162
"type": "removal",
1163-
"description": "TODO",
1163+
"description": "Every modern environment has support for Symbols. You can just remove the check.",
11641164
"url": {
11651165
"type": "mdn",
11661166
"id": "Web/JavaScript/Reference/Global_Objects/Symbol"
@@ -1169,7 +1169,7 @@
11691169
"has-tostringtag": {
11701170
"id": "has-tostringtag",
11711171
"type": "removal",
1172-
"description": "TODO",
1172+
"description": "Every modern environment has support for `Symbol.toStringTag`. You can just remove the check.",
11731173
"url": {
11741174
"type": "mdn",
11751175
"id": "Web/JavaScript/Reference/Global_Objects/Symbol/toStringTag"
@@ -1178,8 +1178,8 @@
11781178
"inherits": {
11791179
"id": "inherits",
11801180
"type": "removal",
1181-
"description": "TODO",
1182-
"url": { "type": "mdn", "id": "Web/JavaScript/Reference/Classes/extends" }
1181+
"description": "You can just use the `class` syntax.",
1182+
"url": {"type": "mdn", "id": "Web/JavaScript/Reference/Classes/extends"}
11831183
},
11841184
"parseInt": {
11851185
"id": "parseInt",

0 commit comments

Comments
 (0)