Awesome
Teacup Camel to Kebab
Teacup plugin to transform camelCase attribute names to kebab-case.
If you use camelCase attributes, they render as kebab-case.
teacup = require 'teacup'
camelToKebab = require 'teacup-camel-to-kebab'
teacup.use camelToKebab
{render, button} = teacup
console.log render ->
button
ngClick: 'executeCallback()',
myCustomDirective: 'data',
'Click Me'
# Outputs <button ng-click="executeCallback()" my-custom-directive="data">Click Me</button>
Contributing
$ git clone https://github.com/goodeggs/teacup-camel-to-kebab && cd teacup-camel-to-kebab
$ npm install
$ npm test
Code of Conduct
Code of Conduct for contributing to or participating in this project.
License
Module scaffold generated by generator-goodeggs-npm.