shim-key-ssr

0.0.1 • Public • Published

shim-keyboard-event-key

Tiny KeyboardEvent#key shim for IE and MS Edge.

Up and running

Get the package from npm:

npm install shim-keyboard-event-key --save

And simply require the module:

import "shim-keyboard-event-key"

Otherwise, plug it the old-fashioned way:

<script src="https://unpkg.com/shim-keyboard-event-key" async></script>

Example

document.addEventListener("keyup", event => {
  if (event.defaultPrevented) return
 
  switch (event.key) {
    case "ArrowLeft":
    case "PageUp":
      player.prev()
      break
 
    case "ArrowRight":
    case "PageDown":
      player.next()
      break
  }
})

Package Sidebar

Install

npm i shim-key-ssr

Weekly Downloads

0

Version

0.0.1

License

MIT

Unpacked Size

2.14 kB

Total Files

4

Last publish

Collaborators

  • paco