Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

object-observer

Package Overview
Dependencies
Maintainers
1
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

object-observer - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

dist/node-module/object-observer.js

4

package.json
{
"name": "object-observer",
"version": "1.0.0",
"version": "1.0.1",
"description": "Object observer utility provides simple means to (deeply) observe specified object/array changes; implemented via native Proxy; changes delivered in a synchronous way",

@@ -27,3 +27,3 @@ "keywords": [

],
"main": "dist/module/object-observer.min.js",
"main": "dist/node-module/object-observer.min.js",
"author": {

@@ -30,0 +30,0 @@ "name": "Guller Yuri",

@@ -26,3 +26,3 @@ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

- __1.0.0__
- __1.0.1__
- Added ES6 module packaging (both regular and minified)

@@ -41,7 +41,11 @@

You have few ways to load the library: as an ES6 module (named or default, pay attention to the __module__ in the path) or as a regular script (into a 'window' global scope, or a custom scope provided by you).
You have few ways to load the library: as an __ES6 module__ (named or default, pay attention to the __`module`__ / __`node-module`__ in the path) or as a __regular script__ (into a 'window' global scope, or a custom scope provided by you).
* ES6 module - default import (__preferred__):
```javascript
// browser
import Observable from 'dist/module/object-observer.min.js';
// NodeJS
let Observable = require('./dist/node-module/object-observer');
```

@@ -48,0 +52,0 @@

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