All Projects → ianstormtaylor → To Case

ianstormtaylor / To Case

Simple case detection and conversion for strings.

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to To Case

Bash Utility
Bash library which provides utility functions and helpers for functional programming in Bash.
Stars: ✭ 92 (-17.12%)
Mutual labels:  utility
Mercury
Simple Android app that sends pre-configured commands to remote servers via SSH.
Stars: ✭ 100 (-9.91%)
Mutual labels:  utility
Janus
Janus is a fake rest api server
Stars: ✭ 107 (-3.6%)
Mutual labels:  utility
Telegram Messages Dump
Command-line tool to dump message history of a Telegram chat.
Stars: ✭ 96 (-13.51%)
Mutual labels:  utility
Jsonabc
Sorts JSON object alphabetically. It supports nested objects, arrays and collections. Works offline and beautifies JSON object too.
Stars: ✭ 100 (-9.91%)
Mutual labels:  utility
Git Extra Status
Get more information for a single or batch of git repositories with a single command
Stars: ✭ 102 (-8.11%)
Mutual labels:  utility
Jsx Ast Utils
AST utility module for statically analyzing JSX
Stars: ✭ 89 (-19.82%)
Mutual labels:  utility
Linuxacademy Dl
Download videos from Linux Academy (linuxacademy.com) for personal offline use
Stars: ✭ 111 (+0%)
Mutual labels:  utility
Npm Quick Run
Quickly run NPM script by prefix without typing the full name
Stars: ✭ 97 (-12.61%)
Mutual labels:  utility
Startup
🔧 R package: startup - Friendly R Startup Configuration
Stars: ✭ 107 (-3.6%)
Mutual labels:  utility
Gameviewlayouter
A utility script that layouts game views with multiple displays.
Stars: ✭ 97 (-12.61%)
Mutual labels:  utility
Date And Time
A Minimalist DateTime utility for Node.js and the browser
Stars: ✭ 99 (-10.81%)
Mutual labels:  utility
Machina
Network capture library for realtime TCP/IP decoding from a windows application. Includes an extension library to support FFXIV data capture.
Stars: ✭ 102 (-8.11%)
Mutual labels:  utility
Jsonmasking
Replace fields in json, replacing by something, don't care if property is in depth objects. Very useful to replace passwords credit card number, etc.
Stars: ✭ 95 (-14.41%)
Mutual labels:  utility
Httpcat
httpcat is a simple utility for constructing raw HTTP requests on the command line.
Stars: ✭ 109 (-1.8%)
Mutual labels:  utility
Sharlayan
Visit us on Discord! https://discord.gg/aCzSANp
Stars: ✭ 91 (-18.02%)
Mutual labels:  utility
Async Ray
Provide async/await callbacks for every, find, findIndex, filter, forEach, map, reduce, reduceRight and some methods in Array.
Stars: ✭ 102 (-8.11%)
Mutual labels:  utility
Endlines
Easy conversion between new-line conventions
Stars: ✭ 112 (+0.9%)
Mutual labels:  utility
Beautifultable
Python package for printing visually appealing tables on a terminal.
Stars: ✭ 110 (-0.9%)
Mutual labels:  utility
Lens
A utility for working with nested data structures.
Stars: ✭ 104 (-6.31%)
Mutual labels:  utility

to-case Build Status

Simple case conversion and detection for strings. Part of the series of case helpers. For the individual libraries see:

Installation

$ npm install to-case

Example

Case conversion:

var to = require('to-case')

to.camel('what_the_heck')      // "whatTheHeck"
to.capital('what the heck')    // "What The Heck"
to.constant('whatTheHeck')     // "WHAT_THE_HECK"
to.dot('whatTheHeck')          // "what.the.heck"
to.inverse('whaT tHe HeCK')    // "WHAt ThE HeCK"
to.lower('whatTheHeck')        // "what the heck"
to.pascal('what.the.heck')     // "WhatTheHeck"
to.sentence('WHAT THE HECK.')  // "What the heck."
to.slug('whatTheHeck')         // "what-the-heck"
to.snake('whatTheHeck')        // "what_the_heck"
to.space('what.the.heck')      // "what the heck"
to.title('what the heck')      // "What the Heck"
to.upper('whatTheHeck')        // "WHAT THE HECK"

Case detection:

var to = require('to-case')

to('thisIsAString')      // "camel"
to('This Is A String')   // "capital"
to('THIS_IS_A_STRING')   // "constant"
to('this.is.a.string')   // "dot"
to('this is a string.')  // "lower"
to('ThisIsAString')      // "pascal"
to('This is a string.')  // "sentence"
to('this-is-a-string')   // "slug"
to('this_is_a_string')   // "snake"
to('this is a string')   // "space"
to('This Is a String')   // "title"
to('THIS IS A STRING')   // "upper"

API

to(string)

Determine the case of a string.

to[case](string)

Convert a string to a case.

to.add(name, converter)

Add a case with the given name and a converter function.

License

The MIT License (MIT)

Copyright © 2016, Ian Storm Taylor

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].