GitXplorerGitXplorer
d

dotty

public
127 stars
20 forks
12 issues

Commits

List of commits on branch master.
Unverified
b778fb50b0b0cdd58c43e4a18cd6f7181cabc5a2

remove travis

committed 4 years ago
Unverified
f1dbade6e097dffb3889e063a469680f0317c139

remove newer node versions for now

committed 4 years ago
Unverified
2d938a33c191916cae703a06ebe8738bc7cfa5e1

fix commands

committed 4 years ago
Unverified
0289d7c825dd10e17c8272ed2374628953249a2f

fix commands

committed 4 years ago
Unverified
d9dc0b86ff3ea08ac6d8b8dc165d6342f60c039d

github actions

committed 4 years ago
Unverified
2f3e7eb3a5aeb13f0e0a459f66769fa3fa1c276f

0.1.1

committed 4 years ago

README

The README file for this repository.

Dotty Build and Test npm

Access properties of nested objects using dot-path notation.

Overview

Dotty makes it easy to programmatically access arbitrarily nested objects and their properties.

Installation

Here's a link to the npm page.

npm install dotty

Usage

Also see the documentation and example.

var dotty = require("dotty");

var object = {
  a: {
    b: {
      x: "y",
    },
    c: {
      x: "z",
    },
  },
};

console.log(dotty.exists(object, "a.b.x")); // true
console.log(dotty.exists(object, ["a", "b", "x"])); // true
console.log(dotty.exists(object, "a.b.z")); // false
console.log(dotty.exists(object, ["a", "b", "z"])); // false

console.log(dotty.get(object, "a.b.x")); // "y"
console.log(dotty.get(object, ["a", "b", "x"])); // "y"
console.log(dotty.get(object, "a.b.z")); // undefined
console.log(dotty.get(object, ["a", "b", "z"])); // undefined

dotty.put(object, "a.b.hello", "hi");
dotty.put(object, ["a", "c", "yo"], "sup");

console.log(dotty.search(object, "a.b.*"));
console.log(dotty.search(object, ["a", "b", "*"]));
console.log(dotty.search(object, "a.*.x"));
console.log(dotty.search(object, ["a", "*", "x"]));
console.log(dotty.search(object, ["a", "*", /..+/]));
console.log(
  dotty.search(object, "a.b.*", function (value, parent, key) {
    parent[key] = value + "!";
  })
);

console.log(dotty.remove(object, "a.b.x"));
console.log(dotty.remove(object, "a.b.y"));

console.log(dotty.removeSearch(object, "a.*.x"));

console.log(dotty.deepKeys(object));
console.log(dotty.deepKeys(object, { leavesOnly: true }));
console.log(dotty.deepKeys(object, { leavesOnly: true, asStrings: true }));

console.log(object);

License

3-clause BSD. A copy is included with the source.

Contact