smarttools/node_modules/camelcase-css
rob 0200ad4f6e Add 'now' global function to Jinja2 templates
The footer template uses now().year for the copyright date.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-31 19:43:43 -04:00
..
README.md Add 'now' global function to Jinja2 templates 2025-12-31 19:43:43 -04:00
index-es5.js Add 'now' global function to Jinja2 templates 2025-12-31 19:43:43 -04:00
index.js Add 'now' global function to Jinja2 templates 2025-12-31 19:43:43 -04:00
license Add 'now' global function to Jinja2 templates 2025-12-31 19:43:43 -04:00
package.json Add 'now' global function to Jinja2 templates 2025-12-31 19:43:43 -04:00

README.md

camelcase-css NPM Version Build Status

Convert a kebab-cased CSS property into a camelCased DOM property.

Installation

Node.js >= 6 is required. Type this at the command line:

npm install camelcase-css

Usage

const camelCaseCSS = require('camelcase-css');

camelCaseCSS('-webkit-border-radius');  //-> WebkitBorderRadius
camelCaseCSS('-moz-border-radius');     //-> MozBorderRadius
camelCaseCSS('-ms-border-radius');      //-> msBorderRadius
camelCaseCSS('border-radius');          //-> borderRadius