1.1.16 • Published 6 months ago

rubellite v1.1.16

Weekly downloads
4
License
MIT
Repository
github
Last release
6 months ago

Rubellite

Rubellite is a dictionary data structure built for JavaScript

Installation

npm i rubellite --save

Usage

Instantiating an empty dictionary

var dictionary = new rubellite();

Instantiating a dictionary using an already existing object

var obj = { 
    firstProperty: "someData",
    secondProperty: "someOtherData"
};

var dictionary = new rubellite(obj);

Retrieving the number of items

var count = dictionary.count();

Adding an item

dictionary.add("thirdProperty", 123);

Adding or Replacing an item

dictionary.replace("thirdProperty", 456);

Adding all key values in an object to the dictionary

- Overwrite any key values which are already present in the dictionary
var obj = { 
    thirdProperty: "abc",
    fourthProperty: 123
};

dictionary.feed(obj);
- Skip any key values which are already present in the dictionary
var obj = { 
    thirdProperty: "abc",
    fourthProperty: 123
};

dictionary.feed(obj, true);

Checking if an item already exists

var exists = dictionary.containsKey("firstProperty");

Retrieving an item

var item = dictionary.seek("firstProperty");

Removing an item

dictionary.remove("firstProperty");

Retrieving all keys

var array = dictionary.getKeys();

Retrieving all values

var array = dictionary.getValues();

Retrieving all data as a JSON string

var data = dictionary.getJson();

Clearing the Dictionary

dictionary.clear();

Recycling the Dictionary

var obj = { 
    firstProperty: "someData",
    secondProperty: "someOtherData"
};

dictionary.recycle(obj);

Note about JavaScript primitive types

Utilising objects as values will ensure mutations when accessing the value via the seek function. If you decide to use a primitive type as a value, such as an integer type, updating it after using the seek function will not update the value inside the dictionary, in this case utilise the provided replace function to update the key's value.

Author

Michael Cassar (michaelcassar.com) - GitHub, NPM

1.1.16

6 months ago

1.1.15

6 months ago

1.1.12

4 years ago

1.1.11

4 years ago

1.1.14

4 years ago

1.1.13

4 years ago

1.1.10

5 years ago

1.1.9

5 years ago

1.1.8

5 years ago

1.1.7

5 years ago

1.1.6

5 years ago

1.1.5

5 years ago

1.1.4

5 years ago

1.1.3

5 years ago

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago