Skip to content

Commit 6d543df

Browse files
committed
Add commented-out checks for missing features
1 parent a975a6b commit 6d543df

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/index.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@ export const baseSupport =
4242
// ES2022
4343
// 'at' in String.prototype && // Polyfilled
4444
// 'at' in Array.prototype && // Polyfilled
45+
// 'hasOwn' in Object && // Polyfilled
46+
// ESNext
47+
// 'abort' in AbortSignal && // Polyfilled
48+
// 'timeout' in AbortSignal && // Polyfilled
49+
// typeof AggregateError === 'function' && // Polyfilled
50+
// 'randomUUID' in crypto && // Polyfilled
51+
// 'replaceChildren' in Element.prototype && // Polyfilled
52+
// 'requestIdleCallback' in window && // Polyfilled
4553
true
4654

4755
export const polyfills = {

0 commit comments

Comments
 (0)