UNPKG

compare-two-strings-1

Version:
13 lines (12 loc) 181 B
function compare(string1 ,string2) { if(string1 === string2) { return true; } else { return false; } } module.exports = compare;