sage collapsing has-emoji"> 30f7226d9a first commit 3 years ago tailwind-color-palette 30f7226d9a first commit 3 years ago tailwindcss 30f7226d9a first commit 3 years ago thenify 30f7226d9a first commit 3 years ago thenify-all 30f7226d9a first commit 3 years ago to-regex-range 30f7226d9a first commit 3 years ago tr46 30f7226d9a first commit 3 years ago ts-interface-checker 30f7226d9a first commit 3 years ago uglify-js 30f7226d9a first commit 3 years ago underscore 30f7226d9a first commit 3 years ago upper-case 30f7226d9a first commit 3 years ago util-deprecate 30f7226d9a first commit 3 years ago valid-data-url 30f7226d9a first commit 3 years ago web-resource-inliner 30f7226d9a first commit 3 years ago webidl-conversions 30f7226d9a first commit 3 years ago whatwg-url 30f7226d9a first commit 3 years ago wrap-ansi 30f7226d9a first commit 3 years ago wrappy 30f7226d9a first commit 3 years ago y18n 30f7226d9a first commit 3 years ago yallist 30f7226d9a first commit 3 years ago yaml 30f7226d9a first commit 3 years ago yargs 30f7226d9a first commit 3 years ago yargs-parser 30f7226d9a first commit 3 years ago .yarn-integrity 30f7226d9a first commit 3 years ago tum/network_report_server - Gogs: Simplico Git Service

No Description

tum 30f7226d9a first commit 3 years ago
..
LICENSE 30f7226d9a first commit 3 years ago
README.md 30f7226d9a first commit 3 years ago
package.json 30f7226d9a first commit 3 years ago
param-case.d.ts 30f7226d9a first commit 3 years ago
param-case.js 30f7226d9a first commit 3 years ago

README.md

Param Case

NPM version NPM downloads Build status Test coverage

Param case a string.

Supports Unicode (non-ASCII characters) and non-string entities, such as objects with a toString property, numbers and booleans. Empty values (null and undefined) will result in an empty string.

Installation

npm install param-case --save

Usage

var paramCase = require('param-case')

paramCase('string')        //=> "string"
paramCase('camelCase')     //=> "camel-case"
paramCase('sentence case') //=> "sentence-case"

paramCase('MY STRING', 'tr') //=> "my-strıng"

Typings

Includes a TypeScript definition.

License

MIT