All Projects → ianstormtaylor → to-no-case

ianstormtaylor / to-no-case

Licence: other
Remove an existing case from a string.

Programming Languages

javascript
184084 projects - #8 most used programming language
Makefile
30231 projects

Projects that are alternatives of or similar to to-no-case

Vutils
Vutils or Vic Utilities is an utility library written in Modern C++ and for Modern C++. It helps your programming go easier, faster, and simpler.
Stars: ✭ 16 (+6.67%)
Mutual labels:  utility
bncsutil
The Classic Battle.net™ client library
Stars: ✭ 19 (+26.67%)
Mutual labels:  utility
go-ethutil
Ethereum utility functions for Go.
Stars: ✭ 17 (+13.33%)
Mutual labels:  utility
ctxutil
utils for Go context
Stars: ✭ 18 (+20%)
Mutual labels:  utility
arr-flatten
Recursively flatten an array or arrays. This is the fastest implementation of array flatten.
Stars: ✭ 55 (+266.67%)
Mutual labels:  utility
pegjs-util
Utility Class for PEG.js
Stars: ✭ 29 (+93.33%)
Mutual labels:  utility
asynckit
Minimal async jobs utility library, with streams support
Stars: ✭ 21 (+40%)
Mutual labels:  utility
po-util
Classic Edition of po-util: The Ultimate Local Particle Experience for Linux and macOS
Stars: ✭ 51 (+240%)
Mutual labels:  utility
aspZip
A classic ASP zip and unzip utility class that uses the native zip support from Windows (XP and above) - no components needed
Stars: ✭ 24 (+60%)
Mutual labels:  utility
django-papertrail
django-papertrail - An elegant solution for keeping a relational log of events in a Django application.
Stars: ✭ 30 (+100%)
Mutual labels:  utility
dePAC
seamless Proxy Auto-Config (a.k.a. Web Proxy Auto Discovery) for CLI apps
Stars: ✭ 26 (+73.33%)
Mutual labels:  utility
regenny
A reverse engineering tool to interactively reconstruct structures and generate header files
Stars: ✭ 58 (+286.67%)
Mutual labels:  utility
pidesktop
Collected files, drivers and documentation for the pidesktop case
Stars: ✭ 26 (+73.33%)
Mutual labels:  case
ToGoZip
Android share/sendTo menu implementation "add2Zip"
Stars: ✭ 44 (+193.33%)
Mutual labels:  utility
HashKode
Kotlin hashcode utilities
Stars: ✭ 15 (+0%)
Mutual labels:  utility
CLIp
CLIp is a clipboard manager for a command line interface written in 100% standard C only. Pipe to it to copy, pipe from it to paste.
Stars: ✭ 12 (-20%)
Mutual labels:  utility
reminders-menubar
Simple macOS menu bar application to view and interact with reminders. Developed with SwiftUI and using Apple Reminders as a source.
Stars: ✭ 250 (+1566.67%)
Mutual labels:  utility
goto
Goto - The Good Way to Program
Stars: ✭ 14 (-6.67%)
Mutual labels:  utility
couchbackup
CouchDB backup and restore command-line utility.
Stars: ✭ 15 (+0%)
Mutual labels:  utility
springboard
Springboard jumpstarts your projects for you. Hello, warp speed.
Stars: ✭ 13 (-13.33%)
Mutual labels:  utility

to-no-case Build Status

Remove any existing casing from a string. Part of the series of case helpers.

Installation

$ npm install to-no-case

Example

var toNoCase = require('to-no-case')

toNoCase('camelCase')            // "camel case"
toNoCase('snake_case')           // "snake case"
toNoCase('slug-case')            // "slug case"
toNoCase('Title of Case')        // "title of case"
toNoCase('Sentence case.')       // "sentence case."
toNoCase('RAnDom -jUNk$__loL!')  // "random -junk$__lol!"

If you specifically want to receive space case strings as the output, without any other odd characters, check out to-space-case instead. Or one of the other case helpers.

API

toNoCase(string)

Returns the string with any existing casing removed.

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].