feat(challenge-md): Add initial markdown challenge files

This commit is contained in:
Bouncey
2018-09-30 23:01:58 +01:00
committed by Stuart Taylor
parent e7e69081b6
commit 81a1f0c4f8
1475 changed files with 115657 additions and 2390 deletions

View File

@ -1,4 +1,4 @@
export function dasherize(name) {
exports.dasherize = function dasherize(name) {
return ('' + name)
.toLowerCase()
.replace(/\s/g, '-')