Skip to content

Latest commit

 

History

History
14 lines (12 loc) · 401 Bytes

README.md

File metadata and controls

14 lines (12 loc) · 401 Bytes

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');