Merge pull request #15 from Bouncey/feat/backendView

Add backend view
This commit is contained in:
Stuart Taylor
2018-04-16 12:04:25 +01:00
committed by Mrugesh Mohapatra
parent 4b7dc90763
commit 5f0068e9c8
23 changed files with 1311 additions and 541 deletions

View File

@@ -3,6 +3,7 @@ exports.dasherize = function dasherize(name) {
.toLowerCase()
.replace(/\s/g, '-')
.replace(/[^a-z0-9\-\.]/gi, '')
.replace(/\./g, '-')
.replace(/\:/g, '');
};