npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

change-case-object-chmurson

v2.1.0

Published

Changes the case of all keys of an object

Downloads

6

Readme

change-case-object

Build Status Dependency Status devDependency Status Coverage Status Code Climate

Changes the case of all keys in an object or array. In its simplest form it also changes the key itself if a string is passed in.

Fork

For was created at version of 2.0.0 of original BinaryThumb/change-case-object

Installation

npm install change-case-object Currently, only CommonJS environments are supported. (This means Node.js and browser with browserify or webpack)

Example

var changeCaseObject = require('change-case-object');

var myObject = {
  hello_world: 'hi',
};

var newObject = changeCaseObject.camelCase(myObject);
// {helloWorld: 'hi'}

Methods

All methods are available under the changeCaseObject object after the module has been required.

.camelCase

Conerts all object keys into camel case.
hello_world -> helloWorld

.snakeCase

Conerts all object keys into snake case.
helloWorld -> hello_world

.paramCase

Conerts all object keys into param case.
helloWorld -> hello-world

Shorthand methods are also available:

.camelCase -> .camel
.snakeCase -> .snake
.paramCase -> .param

Code Guideline

AirBnB ES5

License

MIT

Changelog

2.1.0 String values of are no longer being transformed 2.0.0 Object values are no longer being transformed by default 1.1.1 Stricter checking for code guideline
1.1.0 Add support for arrays and primitives
1.0.0 Initial version