New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

object-resolver

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

object-resolver

Easy to use, chaining / asynchronous API (getter, setter) for operations with complex javascript types (arrays, object)

  • 0.9.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Weekly downloads
 
Created
Source

Object Resolver

Object Resolver is a nodejs module for dealing with javascript Object/Array data types, reaching into objects and generate a deep structure of the objects using simple MongoDB-style queries.

Installing

$ npm install object-resolver

Description

Object Resolver class provides easy to use, chaining/callback API (getter, setter) for operations with complex javascript types (arrays, objects) using simple string dot notation queries. It used MongoDB-style query syntax for reaching into objects and can create undefined properties and deep structures on the fly. ObjectResolver is designed as a nodejs module but can be also used in the client side javascript, with only removing unnecessary "= module.exports" assignment in constructor. Note: For async callbacks support please checkout 'async' branch.

Example

var ObjectResolver = require("./object-resolver"),
exampleObject = {},
resolver = new ObjectResolver();

// call with callback (error handling)
resolver.resolve(exampleObject)
    .update("a.b.0.c", 10, function (err, obj) {
        console.log(err); // null or string with error description "TypeError: cannot set property 'undefined' of number"
        console.log(obj); // updated object { a : { b : [{ c : 10 }] } }
    });

// chaining call
var result = resolver.resolve(exampleObject)
    .update("a.b.0.c", 10)
    .find("a.b.0"); // [{ c : 10 }]

License

Copyright (c) 2012 Dmitry Poklonskiy <dimik@ya.ru>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

FAQs

Package last updated on 30 Nov 2012

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc