Skip to content

Commit de6123b

Browse files
committed
add invokers polyfill
1 parent ed36174 commit de6123b

File tree

4 files changed

+28
-0
lines changed

4 files changed

+28
-0
lines changed

docs/index.html

+14
Original file line numberDiff line numberDiff line change
@@ -545,6 +545,20 @@ <h1>GitHub Feature Support Table</h1>
545545
<td data-supported="true"><div>34+</div></td>
546546
<td data-supported="true"><div>5.0+</div></td>
547547
</tr>
548+
<tr>
549+
<th>
550+
<a href="https://developer.mozilla.org/en-US/docs/Web/API/Invoker_Commands_API">
551+
<code>command & commandfor</code>
552+
</a>
553+
</th>
554+
<td data-polyfill="commandAndCommandFor"><div>*</div></td>
555+
<td data-supported="true"><div>135+</div></td>
556+
<td data-supported="false"><div>*</div></td>
557+
<td data-supported="false"><div>*</div></td>
558+
<td data-supported="false"><div>*</div></td>
559+
<td data-supported="false"><div>*</div></td>
560+
<td data-supported="false"><div>*</div></td>
561+
</tr>
548562
<tr>
549563
<th></th>
550564
<th colspan="7"><h3>Native Syntax</h3></th>

package-lock.json

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,8 @@
4949
"mocha": "^10.2.0",
5050
"tslib": "^2.6.2",
5151
"typescript": "^5.2.2"
52+
},
53+
"dependencies": {
54+
"invokers-polyfill": "^0.5.0"
5255
}
5356
}

src/index.ts

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import * as elementCheckVisibility from './element-checkvisibility.js'
33
import * as navigatorClipboard from './navigator-clipboard.js'
44
import * as withResolvers from './promise-withResolvers.js'
55
import * as requestIdleCallback from './requestidlecallback.js'
6+
import * as commandAndCommandFor from 'invokers-polyfill/fn'
67

78
let supportsModalPseudo = false
89
try {
@@ -49,6 +50,7 @@ export const polyfills = {
4950
navigatorClipboard,
5051
requestIdleCallback,
5152
withResolvers,
53+
commandAndCommandFor,
5254
}
5355

5456
export function isSupported() {

0 commit comments

Comments
 (0)