Skip to content

entwicklerstube/takeoff-utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

takeoff-utils

Utility set of functions used at the takeoff Project.

Utils

camelize

expect(camelize('node-module')).to.equal('NodeModule');
expect(camelize('Gnu General Public License V3.0', ' ')).to.equal('Gnu General Public License V3.0');

capitalize

expect(capitalize('node-module')).to.equal('Node-module');