Skip to content

Commit c00942c

Browse files
authored
feat: add string.prototype.includes to native manifest (#621)
1 parent 58bf7ff commit c00942c

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

manifests/native.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1222,6 +1222,18 @@
12221222
"compatKey": "javascript.builtins.String.at"
12231223
}
12241224
},
1225+
"String.prototype.includes": {
1226+
"id": "String.prototype.includes",
1227+
"type": "native",
1228+
"url": {
1229+
"type": "mdn",
1230+
"id": "Web/JavaScript/Reference/Global_Objects/String/includes"
1231+
},
1232+
"webFeatureId": {
1233+
"featureId": "string-includes",
1234+
"compatKey": "javascript.builtins.String.includes"
1235+
}
1236+
},
12251237
"String.prototype.lastIndexOf": {
12261238
"id": "String.prototype.lastIndexOf",
12271239
"type": "native",
@@ -2550,6 +2562,11 @@
25502562
"moduleName": "string.prototype.at",
25512563
"replacements": ["String.prototype.at"]
25522564
},
2565+
"string.prototype.includes": {
2566+
"type": "module",
2567+
"moduleName": "string.prototype.includes",
2568+
"replacements": ["String.prototype.includes"]
2569+
},
25532570
"string.prototype.lastindexof": {
25542571
"type": "module",
25552572
"moduleName": "string.prototype.lastindexof",

0 commit comments

Comments
 (0)