Package with function `reverseAndSwitchCases` that takes input string as an input and if it contains only alphanumerical characters, reverses the order and switches lowercase to upper case and vice-versa. The output along with input and execution time o
npm install test-assignmentreverseAndSwitchCases that takes input string as an input and if it contains
require('test-assignment');
var output = reverseAndSwitchCases("abCD12");
console.log(output);
``