Giter Club home page Giter Club logo

case-it's Introduction

case-it

npm ci workflow License npm bundle size(minified) npm bundle size(minified + gzip)

Simple case conversion for strings, ported from to-case.

Features

  • Official support type definitions - both TypeScript and Flowtype.
  • Single package, separate modules - easy to use, tiny bundles.
  • No unnecessary detection tools - Just use str === caseIt(str).
  • Zero dependencies.

Installation

npm install case-it

Usage

Import:

// Import by the main module
const { camelCaseIt } = require("case-it")

// Using the `import` statement (TypeScript, Babel, etc.)
import { dotCaseIt } from "case-it"

// Or just import the modules you need
const { constantCaseIt } = require("case-it/constant")

Case conversion:

camelCaseIt("THIS_IS_A_STRING")   // "thisIsAString"
constantCaseIt("thisIsAString")   // "THIS_IS_A_STRING"
dotCaseIt("thisIsAString")        // "this.is.a.string"
kebabCaseIt("ThisIsAString")      // "this-is-a-string"
noCaseIt("thisIsAString")         // "this is a string"
pascalCaseIt("this is a string")  // "ThisIsAString"
snakeCaseIt("THIS_IS_A_STRING")   // "this_is_a_string"
spaceCaseIt("this_is_a_string")   // "this is a string"

Case detection:

const str = "THIS_IS_A_STRING"

const strIsCamel = str === camelCaseIt(str)       // false
const strIsConstant = str === constantCaseIt(str) // true

API

camelCaseIt(str: string): string

Convert a string to camel case. ("case-it/camel")

constantCaseIt(str: string): string

Convert a string to constant case. ("case-it/constant")

dotCaseIt(str: string): string

Convert a string to dot case. ("case-it/dot")

kebabCaseIt(str: string): string

Convert a string to kebab case. ("case-it/kebab")

noCaseIt(str: string): string

Remove any starting case from a string, like camel or snake, but keep spaces and punctuation that may be important otherwise. ("case-it/no")

pascalCaseIt(str: string): string

Convert a string to pascal case. ("case-it/pascal")

snakeCaseIt(str: string): string

Convert a string to snake case. ("case-it/snake")

spaceCaseIt(str: string): string

Convert a string to space case. ("case-it/space")

License

case-it

The MIT License (MIT) - Copyright (c) 2018-present, Firede

to-case

The MIT License (MIT) - Copyright (c) 2016, Ian Storm Taylor

case-it's People

Contributors

dependabot[bot] avatar firede avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

volcanocc

case-it's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.