This repository demonstrates an instance of CWE-020: Improper Imput Validation.
- Run through the setup flow in the security tab to enable code scanning. Commit directly to master.
- Go to actions, and confirm that the analysis has run successfully.
- Edit script.js and add this code snippet. Create a PR. Wait for validation.
function endsWith(x, y) {
return x.lastIndexOf(y) === x.length - y.length;
}