Handshake

in #ita2 months ago

export const commands = (numb) => {

let result = [];

if(numb & 1) result.push('wink');

if(numb & 2) result.push('double blink');

if(numb & 4) result.push('close your eyes');

if(numb & 8) result.push('jump');

if(numb & 16) result.reverse();

return result;

};