Socket
Socket
Sign inDemoInstall

match-casing

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

match-casing

Match the case of `value` to that of `base`


Version published
Weekly downloads
6.8K
increased by0.52%
Maintainers
1
Weekly downloads
 
Created
Source

match-casing

Build Coverage Downloads Size

Match the case of value to that of base.

Install

npm:

npm install match-casing

Use

var casing = require('match-casing')

casing('foo', 'BAZ') // => 'FOO'
casing('foo', 'Baz') // => 'Foo'
casing('foo', 'baz') // => 'foo'
casing('foo', 'BaZ') // => 'foo'

casing('FOO', 'BAZ') // => 'FOO'
casing('FOO', 'Baz') // => 'Foo'
casing('FOO', 'baz') // => 'foo'
casing('FOO', 'BaZ') // => 'FOO'

casing('Foo', 'BAZ') // => 'FOO'
casing('Foo', 'Baz') // => 'Foo'
casing('Foo', 'baz') // => 'foo'
casing('Foo', 'BaZ') // => 'Foo'

casing('’90S', '’twas') // => '’90s'
casing('’N’', 'a') // => '’n’'

API

matchCasing(value, base)

Transform the case in value (string) to match that of base (string).

Algorithm

  • If base is uppercase, value is uppercased
  • Else, if base is lowercase, value is lowercased
  • Else, if the first alphabetic character in base is uppercase, and the rest of base is lowercase, uppercase the first alphabetic character in value and lowercase the rest
  • Else, return value unmodified

The third case, where value takes on a capitalized, deals with initial non-alphabetical characters as expected.

License

MIT © Titus Wormer

Keywords

FAQs

Package last updated on 25 Jan 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc