├── .gitignore ├── LICENCE ├── README.md ├── package.json ├── task.js └── task.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | # gitignore -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hazrat-Ali9/Javascript-Testing/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🚞 Hazrat Ali 2 | 3 | # 🚙 Programmer || Software Engineering 4 | 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hazrat-Ali9/Javascript-Testing/HEAD/package.json -------------------------------------------------------------------------------- /task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hazrat-Ali9/Javascript-Testing/HEAD/task.js -------------------------------------------------------------------------------- /task.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hazrat-Ali9/Javascript-Testing/HEAD/task.test.js --------------------------------------------------------------------------------