GithubHelp home page GithubHelp logo

tehshrike / difference-accumulator Goto Github PK

View Code? Open in Web Editor NEW

This project forked from saibotsivad/difference-accumulator

0.0 3.0 0.0 6 KB

Accumulate differences in an object, get the total difference, reset the accumulator.

JavaScript 100.00%

difference-accumulator's Introduction

difference-accumulator

Accumulate differences in an object, get the total difference, reset the accumulator.

install

The normal way:

npm install difference-accumulator

use

Create a new accumulator with the original object:

const accumulator = require('difference-accumulator')
const originalData = {
	firstName: 'Bilbo',
	lastName: 'Baggins'
}
const acc = accumulator(originalData)

Apply a change:

acc.accumulate({ firstName: 'Frodo' })

Get out the sum of the changes:

const diff = acc.difference()
// diff = {
// 	firstName: 'Frodo'
// }

Undo the accumulated changes:

acc.clear()
const diff = acc.difference()
// diff = {}

api

acc = accumulator(originalData)

  • originalData (object, optional)

Create a new accumulator by passing in an object property.

If originalData is not specified, an object literal {} will be used.

acc.accumulate(delta)

  • delta (object, optional)

The change to be applied to the original data.

If delta is not specified, no difference will be accumulated.

For example:

acc.accumulate({
	firstName: 'Frodo'
})
acc.accumulate({
	relationships: {
		uncle: 'Bilbo'
	}
})

Will accumulate to the total delta:

const difference = {
	firstName: 'Frodo',
	relationships: {
		uncle: 'Bilbo'
	}
}

Accumulating falsey values (including undefined) will yield a difference which includes those properties:

const acc = accumulate({ firstName: 'Bilbo' })
acc.accumulate({ firstName: undefined })
// diff = {
// 	firstName: undefined
// }

Accumulating values identical to the original data will yield a difference which does not include that change:

const acc = accumulate({ firstName: 'Bilbo' })
acc.accumulate({ firstName: 'Bilbo' })
// diff = {}

Note that the comparison is done using === on each property, therefore:

const acc = accumulate({})
acc.accumulate({ firstName: undefined })
// diff = {}

acc.difference()

This will yield the current total accumulated difference.

acc.clear()

This will clear the total accumulated difference.

license

Published and released under the Very Open License.

difference-accumulator's People

Contributors

saibotsivad avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.