Socket
Socket
Sign inDemoInstall

symbol-observable

Package Overview
Dependencies
0
Maintainers
3
Versions
19
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.2 to 1.0.3

10

CHANGELOG.md

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

<a name="1.0.3"></a>
## [1.0.3](https://github.com/blesh/symbol-observable/compare/1.0.2...v1.0.3) (2016-10-11)
### Bug Fixes
* **mozilla addons support:** fix obtaining global object (#23) ([38da34d](https://github.com/blesh/symbol-observable/commit/38da34d)), closes [#23](https://github.com/blesh/symbol-observable/issues/23)
<a name="1.0.2"></a>

@@ -2,0 +12,0 @@ ## [1.0.2](https://github.com/blesh/symbol-observable/compare/1.0.1...v1.0.2) (2016-08-09)

13

es/index.js
/* global window */
import ponyfill from './ponyfill';
var root = this;
if (typeof global !== 'undefined') {
root = global;
var root = module;
if (typeof self !== 'undefined') {
root = self;
} else if (typeof window !== 'undefined') {
root = window;
root = window;
} else if (typeof global !== 'undefined') {
root = global;
} else {
root = Function('return this')();
}

@@ -10,0 +15,0 @@

'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
value: true
});

@@ -13,8 +13,13 @@

var root = undefined; /* global window */
var root = module; /* global window */
if (typeof global !== 'undefined') {
root = global;
if (typeof self !== 'undefined') {
root = self;
} else if (typeof window !== 'undefined') {
root = window;
root = window;
} else if (typeof global !== 'undefined') {
root = global;
} else {
root = Function('return this')();
}

@@ -21,0 +26,0 @@

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

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

# symbol-observable [![Build Status](https://travis-ci.org/blesh/symbol-observable.svg?branch=master)](https://travis-ci.org/blesh/symbol-observable)
> [Symbol.observable](https://github.com/zenparsing/es-observable) ponyfill
> [`Symbol.observable`](https://github.com/zenparsing/es-observable) [ponyfill](https://ponyfill.com)

@@ -5,0 +5,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc