You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.bs
+3-6Lines changed: 3 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -4214,14 +4214,10 @@ interface IDBKeyRange {
4214
4214
optional boolean lowerOpen = false,
4215
4215
optional boolean upperOpen = false);
4216
4216
4217
-
boolean _includes(any key);
4217
+
boolean includes(any key);
4218
4218
};
4219
4219
</xmp>
4220
4220
4221
-
<aside class=note>
4222
-
Note: When mapping the `_includes` identifier from [[WEBIDL]] to ECMAScript, the leading U+005F LOW LINE ("_") character is removed. A leading "_" is used to escape the identifier from looking like a reserved word (in this case, the `includes` keyword).
4223
-
</aside>
4224
-
4225
4221
<dl class="domintro note">
4226
4222
: |range| . {{IDBKeyRange/lower}}
4227
4223
:: Returns the range's [=lower bound=], or `undefined` if none.
@@ -4361,7 +4357,7 @@ The <dfn method for=IDBKeyRange>bound(|lower|, |upper|, |lowerOpen|,
4361
4357
4362
4358
<div class=algorithm>
4363
4359
4364
-
The <dfn method for=IDBKeyRange lt="_includes(key)|includes(key)">includes(|key|)</dfn> method, when
4360
+
The <dfn method for=IDBKeyRange>includes(|key|)</dfn> method, when
4365
4361
invoked, must run these steps:
4366
4362
4367
4363
1. Let |k| be the result of running [=convert a
@@ -6894,6 +6890,7 @@ For the revision history of the second edition, see [that document's Revision Hi
0 commit comments