UNPKG

secret-santa-js

Version:

Terminal tool for randomly assigning hashed names to each other.

52 lines (25 loc) 694 B
# secret-santa-js This is a terminal tool for Secret Santa. Run following to run ``` npx secret-santa-js KoreanZombie Connor Tyson Fury ``` And it will output following ``` Hello KoreanZombie, You are the secret santa for VHlzb24= To decode, open up a web browser console and run atob("VHlzb24=") Hello Connor, You are the secret santa for S29yZWFuWm9tYmll To decode, open up a web browser console and run atob("S29yZWFuWm9tYmll") Hello Tyson, You are the secret santa for RnVyeQ== To decode, open up a web browser console and run atob("RnVyeQ==") Hello Fury, You are the secret santa for Q29ubm9y To decode, open up a web browser console and run atob("Q29ubm9y") ```