Socket
Socket
Sign inDemoInstall

symbol-observable

Package Overview
Dependencies
Maintainers
3
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

symbol-observable - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

10

CHANGELOG.md

@@ -0,1 +1,11 @@

<a name="1.0.4"></a>
## [1.0.4](https://github.com/blesh/symbol-observable/compare/1.0.3...v1.0.4) (2016-10-13)
### Bug Fixes
* **global:** global variable location no longer assumes `module` exists ([4f85ede](https://github.com/blesh/symbol-observable/commit/4f85ede)), closes [#24](https://github.com/blesh/symbol-observable/issues/24)
<a name="1.0.3"></a>

@@ -2,0 +12,0 @@ ## [1.0.3](https://github.com/blesh/symbol-observable/compare/1.0.2...v1.0.3) (2016-10-11)

4

es/index.js
/* global window */
import ponyfill from './ponyfill';
var root = module;
var root;

@@ -12,2 +12,4 @@ if (typeof self !== 'undefined') {

root = global;
} else if (typeof module !== 'undefined') {
root = module;
} else {

@@ -14,0 +16,0 @@ root = Function('return this')();

@@ -13,3 +13,3 @@ 'use strict';

var root = module; /* global window */
var root; /* global window */

@@ -23,2 +23,4 @@

root = global;
} else if (typeof module !== 'undefined') {
root = module;
} else {

@@ -25,0 +27,0 @@ root = Function('return this')();

{
"name": "symbol-observable",
"version": "1.0.3",
"version": "1.0.4",
"description": "Symbol.observable ponyfill",

@@ -5,0 +5,0 @@ "license": "MIT",

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