New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

objbranch

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

objbranch

to do next to next operation on field

latest
Source
npmnpm
Version
1.1.0
Version published
Maintainers
1
Created
Source

obj-branch

obj-branch is a JavaScript module that facilitates operations on adjacent fields of an object It allows you to make operations on next to next object fields in a convenient way.

Installation

To use obj-branch, you can install it via npm:

npm install obj-branch

Operations

OperationsSyntaxUsage
add$addto add
sub$subto sub
multiplication$multo multiplication
divide$divideto divide
module$modto module

Usage/Examples

  • Import the module into your project:
const objBranch = require('objBranch');
  • Perform operations on adjacent fields of an object. For example:
// It must be a Array

const myObject = [
    {name:'qwertuhh',age:12,totalMarks:89},
    {name:'hopi',age:13,totalMarks:69},
    {name:'qwertuhh',age:11,totalMarks:70}
];

// creating branch

//const <name> = new objbranch(<branchName>,<data>)

const marks = new objBranch('marks',myObject);

// making operation to branch
// <branch_name>.branch(<fieldname>:{<operations>:[<fieldname>,<fieldname>]});

const branch_marks = marks.branch({totalMarks:{$add:['branching','$age']}})

Contributing

Contributions are always welcome!

See other repository for ways to get started.

Contributions are welcome! If you’d like to improve obj-branch, feel free to submit pull requests. Please follow our coding standards and provide clear commit messages.

Future Updates

Stay tuned for more updates and enhancements to this project. We are constantly working to improve and add new features. If you would like to contribute or have any suggestions, please feel free to open an issue or submit a pull request.

For the latest news and updates, keep an eye on this section. Your feedback and contributions are greatly appreciated as we continue to make this project even better!

License

This project is licensed under the MIT License. MIT

Keywords

mongoose

FAQs

Package last updated on 14 Mar 2024

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