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 🙏

© 2025 – Pkg Stats / Ryan Hefner

copykitten

v0.0.8

Published

Tiny immutable JSON data structures

Downloads

35

Readme

copykitten.js

    /\/\
( =( ^-^)=
 \(  ⊃C⊃
      Copy Kitten

Tiny immutable JSON data structures (< 1kb gzip)

This is a minimal library, designed specifically for JSON-compatible values: Strings, Numbers, Booleans, null, Objects, and Arrays. For a wider selection of immutable data structures with less naive implementations, see Immutable.js.

Copy Kitten manipulates JSON data and returns an updated copy; the original data is preserved. A reference to a Copy Kitten result will always return the same value. Use this to write easy-to-understand code and optimise top-down rendering (e.g. Redux).

Data conversion

// JSON value -> immutable
var immutable = copykitten.toImmutable({example: 'value'})

// Immutable value -> JSON string
JSON.stringify(immutable)

// Immutable value -> JSON object
immutable.toJSON();

API

toImmutable(value)

Converts value to an immutable value. Basic types (string, number, boolean, null) are untouched, objects and arrays are converted to FrozenObject and FrozenArray types respectively.

var data = copykitten.toImmutable({
    name: 'Kitten'
});

isImmutable(value)

Returns true for string, number, boolean, null, undefined, FrozenObject and FrozenArray. Otherwise returns false.

copykitten.isImmutable("string")  // true
copykitten.isImmutable(1234)  // true
copykitten.isImmutable(true)  // true
copykitten.isImmutable(null)  // true

copykitten.isImmutable({name: 'Kitten'})  // false

var data = copykitten.toImmutable({name: 'Kitten'});
copykitten.isImmutable(data)  // true

FrozenObject

Represents a JSON-style object (e.g. {hello: 'world'}) which has been frozen and made immutable.

This constructor should not be called directly.

set(key, value)

Returns a new copy of the FrozenObject with the property key set to value. The value is first converted to an immutable (including deep references) before being set on the newly returned FrozenObject.

var a = copykitten.toImmutable({name: 'Kitten'});
var b = data.set('status', 'sleepy');

// a is now {name: 'Kitten'}
// b is now {name: 'Kitten', status: 'sleepy'}

remove(key)

Returns a new copy of the FrozenObject with the property key removed.

var a = copykitten.toImmutable({name: 'Kitten', toy: 'ball'});
var b = a.remove('toy');

// a is now {name: 'Kitten', toy: 'ball'}
// b is now {name: 'Kitten'}

merge(props)

Returns a new copy of the FrozenObject including the properties and values from the props object. Any values defined on props will be converted to immutables first (including deep references).

var a = copykitten.toImmutable({name: 'Kitten'});
var b = a.merge({status: 'hungry'});

// a is now {name: 'Kitten'}
// b is now {name: 'Kitten', status: 'hungry'}

deepMerge(props)

Like merge(props) but will recursively merge nested objects.

var a = copykitten.toImmutable({animal: {name: 'Kitten'}});
var b = a.deepMerge({animal: {status: 'hungry'}});

// a is now {animal: {name: 'Kitten'}}
// b is now {animal: {name: 'Kitten', status: 'hungry'}}

update(f)

Calls the function f with a mutable copy of the current FrozenObject, then returns an immutable version including any modifications made by f.

var a = copykitten.toImmutable({name: 'Kitten'});
var b = a.update(function (obj) {
    delete obj.name;
    obj.type = 'animal';
});

// a is now {name: 'Kitten'}
// b is now {type: 'animal'}

Only the current object is mutable, any nested properties will remain immutable while f is being called.

thaw()

Returns a mutable JSON data type for the current object. Any nested properties will remain immutable.

var obj = copykitten.toImmutable({name: 'Kitten'});
obj.thaw()  // => {name: 'Kitten'}

toJSON()

Converts the current object and all nested properties to their mutable JSON data type representations.

var obj = copykitten.toImmutable({name: 'Kitten'});
obj.toJSON()  // => {name: 'Kitten'}

FrozenArray

FrozenArray extends FrozenObject. In addition to the FrozenObject methods, it provides immutable implementations of most Array methods. Some descriptions borrowed from the [MDN Array documentation][mdn-arra].

This constructor should not be called directly.

push(element1, ..., elementN)

Returns a new FrozenArray with value appended.

var a = copykitten.toImmutable(['yarn', 'ball']);
var b = a.push('mouse');

// a is now ['yarn', 'ball']
// b is now ['yarn', 'ball', 'mouse']

pop()

Returns a new FrozenArray with the last item removed.

var a = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
var b = a.pop();

// a is now ['yarn', 'ball', 'mouse']
// b is now ['yarn', 'ball']

Note: does not return the popped element, just the updated array.

unshift([element1[, ...[, elementN]]])

Returns a new FrozenArray with value prepended.

var a = copykitten.toImmutable(['yarn', 'ball']);
var b = a.unshift('mouse');

// a is now ['yarn', 'ball']
// b is now ['mouse', 'yarn', 'ball']

shift()

Returns a new FrozenArray with the first item removed.

var a = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
var b = a.shift();

// a is now ['yarn', 'ball', 'mouse']
// b is now ['ball', 'mouse']

Note: does not return the shifted element, just the updated array.

sort([compareFunction])

Returns a new, sorted FrozenArray.

var a = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
var b = a.sort();

// a is now ['yarn', 'ball', 'mouse']
// b is now ['ball', 'mouse', 'yarn']

splice(start, deleteCount[, item1[, item2[, ...]]])

Works as the Array.splice method. Returns a new FrozenArray updated by adding and/or removing elements from the original.

var a = copykitten.toImmutable(['yarn', 'ball']);
var b = a.splice(1, 1, 'mouse');

// a is now ['yarn', 'ball']
// b is now ['yarn', 'mouse']

slice([begin[, end]])

Returns a new FrozenArray including a portion of the original.

var a = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
var b = a.slice(1)

// a is now ['yarn', 'ball', 'mouse']
// b is now ['ball', 'mouse']

every(callback[, thisArg])

Tests whether all elements in the FrozenArray pass the test implemented by the provided function. Returns boolean.

var toys = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
var small = toys.every(function (toy) {
    return toy.length < 10;
});

// small == true

filter(callback[, thisArg])

Creates a new FrozenArray with all elements that pass the test implemented by the provided function.

var toys = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
var tiny = toys.filter(function (toy) {
    return toy.length < 4;
});

// tiny is now ['ball']

forEach(callback[, thisArg])

Executes a provided function once per FrozenArray element.

var toys = copykitten.toImmutable(['yarn', 'ball', 'mouse']);

toys.forEach(function (toy) {
    console.log(toy);
});

indexOf(searchElement[, fromIndex = 0])

Returns the first index at which a given element can be found in the FrozenArray, or -1 if it is not present.

var toys = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
toys.indexOf('ball');  // => 1

join([separator = ','])

Joins all elements of a FrozenArray into a string.

var toys = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
toys.join(' and ');  // => 'yarn and ball and mouse'

lastIndexOf(searchElement[, fromIndex = arr.length - 1])

Returns the last index at which a given element can be found in the FrozenArray, or -1 if it is not present. The FrozenArray is searched backwards, starting at fromIndex.

var toys = copykitten.toImmutable(['yarn', 'ball', 'mouse', 'ball']);
toys.lastIndexOf('ball');  // => 3

map(callback[, thisArg])

Creates a new FrozenArray with the results of calling a provided function on every element in this FrozenArray.

var toys = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
var caps = toys.map(function (toy) {
    return toy.toUpperCase();
});

// caps is now ['YARN', 'BALL', 'MOUSE']

reduce(callback[, initialValue])

Applies a function against an accumulator and each value of the FrozenArray (from left-to-right) to reduce it to a single value.

var toys = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
var size = toys.reduce(function (count, toy) {
    return count + toy.length;
}, 0);

// size is now 13

reduceRight(callback[, initialValue])

Applies a function against an accumulator and each value of the FrozenArray (from right-to-left) has to reduce it to a single value.

var toys = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
var smallest = toys.reduceRight(function (min, toy) {
    if (toy.length < min.length) {
        return toy;
    }
    return min;
});

// smallest is now 'ball'

some(callback[, thisArg])

Tests whether some element in the FrozenArray passes the test implemented by the provided function.

var toys = copykitten.toImmutable(['yarn', 'ball', 'mouse']);
var got_ball = toys.some(function (toy) {
    return toy === 'ball';
});

// got_ball == true