object-changes
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

object-changes

Compares two objects and returns the differences.

License
Commits since v1.0.0 Last commit Issues
Latest version on npm Dependents Downloads

Usage

import objectChanges from "object-changes"#
const previousObject = {
  unchanged: 2,
  changed: 2,
  removed: "a"
}
const nextObject = {
  unchanged: 2,
  changed: 3
}
const result = objectChanges(previousObject, nextObject)
// Result: {changed: 3, removed: undefined}

Installation

object-changes on npm

npm install --save object-changes@^1.0.0

object-changes on Yarn

yarn add object-changes@^1.0.0

object-changes on jsDelivr object-changes on UNPKG

<script src="https://cdn.jsdelivr.net/npm/object-changes@1.0.0/index.js"/>

Try it out

Open a browser's JavaScript console and execute:

const scriptElement = document.createElement("script");
scriptElement.setAttribute("type", "text/javascript");
scriptElement.setAttribute("src", "https://cdn.jsdelivr.net/npm/object-changes@1.0.0/index.js");
document.querySelector("head").appendChild(scriptElement);

object-changes is now stored in the global variable objectChanges. The following console expression should return something other than "undefined".

typeof objectChanges.default

Reference

module.exports([compareValue]) ⇒ Object

Kind: Exported function
Returns: Object - Seconds passed since Unix epoch (01 January 1970)

Param Type
[compareValue] number

Example

import objectChanges from "object-changes"
const result = objectChanges({
  unchanged: 2,
  changed: 2
},
{ unchanged: 2,
  changed: 3
})
// Result: {changed: 3}

License

MIT License
 
Copyright © 2019, Jaid <jaid.jsx@gmail.com> (github.com/jaid)
 
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.

Readme

Keywords

none

Package Sidebar

Install

npm i object-changes

Weekly Downloads

4

Version

1.0.0

License

none

Unpacked Size

10.2 kB

Total Files

6

Last publish

Collaborators

  • jaid