I need to solve the GitHub Anagram problem(the function that will check if two strings are anagram or not). I know how to solve it but the issue is in Github anagram-checker.js file there is a function: module.exports = function (str) in this function, there is only one argument, While for checking anagram I have to process two strings. the value of the string(str) is ('anagram("O, Draconian devil", "Leonardo da Vinci")'). I need help how to get and process both the parameters as str1 and str2