Logo
Explore Help
Sign In
gaspersic/freeCodeCamp
1
0
Fork 0
You've already forked freeCodeCamp
Code Issues Pull Requests Projects Releases Wiki Activity
freeCodeCamp/curriculum/utils.js

11 lines
265 B
JavaScript
Raw Normal View History

feat(challenge-md): Add initial markdown challenge files
2018-09-30 23:01:58 +01:00
exports.dasherize = function dasherize(name) {
feat(package): Initial Curriculum separation (#17174) * feat(package): Initial Curriculum separation * feat(package): Add org scope to package * chore(ooops): Remove development file * feat(npm): Add .npmignore * fix(paths): Fix curriculum paths * feat(build): Add a build step * chore(seed): Move package file back to seed * fix(ignore): Fix .npmIgnore file * chore(docs): Update README * chore(seed): Rename coding interview blocks * fix(seed): Challenge files now fit into learn * chore(seed): Update seed files for use in learn * chore(escapes): Unescape script tags of jQuery
2018-05-21 14:56:49 +01:00
return ('' + name)
.toLowerCase()
.replace(/\s/g, '-')
.replace(/[^a-z0-9\-\.]/gi, '')
.replace(/\:/g, '');
feat(next): BREAKING New curriculum package
2018-10-04 17:36:00 +01:00
};
feat(langs): Prep Spanish challenges for parsing
2018-10-09 20:26:37 +01:00
const supportedLangs = ['english', 'spanish'];
feat(next): BREAKING New curriculum package
2018-10-04 17:36:00 +01:00
exports.supportedLangs = supportedLangs;
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.23.8 Page: 849ms Template: 6ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API