camelcase-css

WebJar for camelcase-css

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

camelcase-css
Last Version

Last Version

2.0.1
Release Date

Release Date

Type

Type

jar
Description

Description

camelcase-css
WebJar for camelcase-css
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/stevenvachon/camelcase-css

Download camelcase-css

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/camelcase-css/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>camelcase-css</artifactId>
    <version>2.0.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/camelcase-css/
implementation 'org.webjars.npm:camelcase-css:2.0.1'
// https://jarcasting.com/artifacts/org.webjars.npm/camelcase-css/
implementation ("org.webjars.npm:camelcase-css:2.0.1")
'org.webjars.npm:camelcase-css:jar:2.0.1'
<dependency org="org.webjars.npm" name="camelcase-css" rev="2.0.1">
  <artifact name="camelcase-css" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='camelcase-css', version='2.0.1')
)
libraryDependencies += "org.webjars.npm" % "camelcase-css" % "2.0.1"
[org.webjars.npm/camelcase-css "2.0.1"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

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

Versions

Version
2.0.1
1.0.1