1.0.2 • Published 6 years ago

callbag-keyboard v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago
yarn add callbag-keyboard
const pipe = require("callbag-pipe");
const forEach = require("callbag-for-each");
const keyboard = require("callbag-keyboard");

pipe(
  keyboard,
  forEach(({ keysDown }) => {
    // have fun
    // keysDown is a Set
  })
);

If you're blessed with the pipeline operator:

keyboard
  |> forEach({ keysDown }) => {
    // have fun
  });

Learn more

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago