function solution(str, ending){
return new RegExp(`.*${ending}$`).test(str);
}
SyntaxError: Invalid regular expression: /.*:-($/: Unterminated group
at new RegExp (<anonymous>)
at solution (test.js:3:10)
at check (test.js:12:16)
at Context.<anonymous> (test.js:28:1)
at process.processImmediate (node:internal/timers:471:21)
function solution(str, ending) {
return String(str).endsWith(ending);
}