Skip to content

aaronshaf/callbag-keyboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Callbag source for the keyboard

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published