0.1.2 • Published 4 years ago

dotty v0.1.2

Weekly downloads
27,858
License
BSD-3-Clause
Repository
github
Last release
4 years ago

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

yak-shave@everything-registry/sub-chunk-1504xconfwhiplashtemplate-uistackgl-generatorsupermodelssycleswrapjetstreamjrenderis-propkeviojsonix-smartindex-bylint-traplinagora-rseletrestlogtronmagic-hatmap-jsonmagichatlance-rest-clientkosumediarenamemdol@vendit-dev/event-store@zalastax/nolb-dotadvsemverapp.io@nocode-toolkit/ui@nocode-toolkit/website-material-ui@nocode-works/template@orchestrated-io/cqrs-domain@orchestrated-io/cqrs-eventdenormalizer@orchestrated-io/eventstore@orchestrated-io/viewmodel@oraichain/ts-codegen@osmonauts/telescope@osmonauts/transpiler@osmonauts/proto-parser@osmonauts/ast@steplov/eventstore@subql/x-cosmology-ast@subql/x-cosmology-proto-parser@subql/x-cosmology-telescope@subql/x-cosmology-utils@sudophunk/v4-clientemmeeslint-plugin-i18n-checkereslint-plugin-i18n-validatorelastic-beanstalk-environmenteventstoreevented-commandevented-repositoryexpressa-adminfe-metabaronfoa-typescript@abstract-money/ts-codegen@bryandbor/metaphor@bryandbor/optimizely-react@bryandbor/redux-booleans@ccwebprd/pgsql-parserchat-engine-emojichat-engine-gravatarchat-engine-markdownchat-engine-online-user-searchcockrelclevercqrs-domaincqrs-eventdenormalizercqrs-sagacqrs-swissknifecqrs-eventdenormalizer-mongocosmscriptdashboard-systemderby-validatedocpack-examples-compilerdigger-containerdf-microservice-commondotty-map@avanzu/eventstore@asar-studio/nestjs-event-sourcingstitchlabsster-portal-sitesort-eventstorevuex-common-mutationswebpack-docs-pluginviewmodelviewmodel-mongo-plustry-celeryunpack-elementzero-config@lysender/eventstoremonkeybrush-generatormongo-graphmoldy-mongo-linkmongoconfigmongoose-encryption-nestedmongoose-encipher
0.1.2

4 years ago

0.1.1

5 years ago

0.1.0

8 years ago

0.0.3

8 years ago

0.0.2

13 years ago

0.0.1

13 years ago