pascalcase

WebJar for pascalcase

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

pascalcase
Last Version

Last Version

0.1.1
Release Date

Release Date

Type

Type

jar
Description

Description

pascalcase
WebJar for pascalcase
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/jonschlinkert/pascalcase

Download pascalcase

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/pascalcase/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>pascalcase</artifactId>
    <version>0.1.1</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/pascalcase/
implementation 'org.webjars.npm:pascalcase:0.1.1'
// https://jarcasting.com/artifacts/org.webjars.npm/pascalcase/
implementation ("org.webjars.npm:pascalcase:0.1.1")
'org.webjars.npm:pascalcase:jar:0.1.1'
<dependency org="org.webjars.npm" name="pascalcase" rev="0.1.1">
  <artifact name="pascalcase" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='pascalcase', version='0.1.1')
)
libraryDependencies += "org.webjars.npm" % "pascalcase" % "0.1.1"
[org.webjars.npm/pascalcase "0.1.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.

pascalcase Donate NPM version NPM monthly downloads NPM total downloads Linux Build Status

Convert a string to pascal-case.

Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your ❤️ and support.

Install

Install with npm (requires Node.js >=8):

$ npm install --save pascalcase

Usage

const pascalcase = require('pascalcase');

console.log(pascalcase('a')); //=> 'A'
console.log(pascalcase('foo bar baz')); //=> 'FooBarBaz'
console.log(pascalcase('  foo bar baz  ')); //=> 'FooBarBaz'
console.log(pascalcase('foo_bar-baz')); //=> 'FooBarBaz'
console.log(pascalcase('foo.bar.baz')); //=> 'FooBarBaz'
console.log(pascalcase('foo/bar/baz')); //=> 'FooBarBaz'
console.log(pascalcase('foo[bar)baz')); //=> 'FooBarBaz'
console.log(pascalcase('#foo+bar*baz')); //=> 'FooBarBaz'
console.log(pascalcase('$foo~bar`baz')); //=> 'FooBarBaz'
console.log(pascalcase('_foo_bar-baz-')); //=> 'FooBarBaz'
console.log(pascalcase('foo 2 bar 5 baz')); //=> 'Foo2Bar5Baz'
console.log(pascalcase('foo2bar5baz')); //=> 'Foo2bar5baz'

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running Tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test
Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Related projects

You might also be interested in these projects:

  • ansi-colors: Easily add ANSI colors to your text and symbols in the terminal. A faster drop-in… more | homepage
  • justified: Wraps words to a specified length and justifies the text in each line. | homepage
  • randomatic: Generate randomized strings of a specified length using simple character sequences. The original generate-password. | homepage
  • word-wrap: Wrap words to a specified length. | homepage

Author

Jon Schlinkert

License

Copyright © 2019, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.8.0, on August 08, 2019.

Versions

Version
0.1.1