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

aurelia-polyfills

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aurelia-polyfills - npm Package Compare versions

Comparing version 1.0.0-beta.1.0.5 to 1.0.0-beta.1.0.6

2

bower.json
{
"name": "aurelia-polyfills",
"version": "1.0.0-beta.1.0.5",
"version": "1.0.0-beta.1.0.6",
"description": "The minimal set of polyfills that the Aurelia platform needs to run on ES5 browsers.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -208,3 +208,3 @@ define(['exports', 'aurelia-pal'], function (exports, _aureliaPal) {

var str = toString.call(this),
tst = typeof this === 'undefined' ? undefined : this[Symbol.toStringTag];
tst = typeof this === 'undefined' || this === null ? undefined : this[Symbol.toStringTag];
return typeof tst === 'undefined' ? str : '[object ' + tst + ']';

@@ -211,0 +211,0 @@ };

@@ -251,3 +251,3 @@ import {PLATFORM} from 'aurelia-pal';

str = toString.call(this),
tst = typeof this === 'undefined' ? undefined : this[Symbol.toStringTag]
tst = typeof this === 'undefined' || this === null ? undefined : this[Symbol.toStringTag]
;

@@ -254,0 +254,0 @@ return typeof tst === 'undefined' ? str : ('[object ' + tst + ']');

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

var str = toString.call(this),
tst = typeof this === 'undefined' ? undefined : this[Symbol.toStringTag];
tst = typeof this === 'undefined' || this === null ? undefined : this[Symbol.toStringTag];
return typeof tst === 'undefined' ? str : '[object ' + tst + ']';

@@ -212,0 +212,0 @@ };

@@ -251,3 +251,3 @@ import {PLATFORM} from 'aurelia-pal';

str = toString.call(this),
tst = typeof this === 'undefined' ? undefined : this[Symbol.toStringTag]
tst = typeof this === 'undefined' || this === null ? undefined : this[Symbol.toStringTag]
;

@@ -254,0 +254,0 @@ return typeof tst === 'undefined' ? str : ('[object ' + tst + ']');

@@ -215,3 +215,3 @@ System.register(['aurelia-pal'], function (_export) {

var str = toString.call(this),
tst = typeof this === 'undefined' ? undefined : this[Symbol.toStringTag];
tst = typeof this === 'undefined' || this === null ? undefined : this[Symbol.toStringTag];
return typeof tst === 'undefined' ? str : '[object ' + tst + ']';

@@ -218,0 +218,0 @@ };

@@ -0,1 +1,9 @@

### 1.0.0-beta.1.0.6 (2016-03-09)
#### Bug Fixes
* **symbol:** treat `null` value the same as `undefined` ([4b705bb1](http://github.com/aurelia/polyfills/commit/4b705bb1c4886e197d0e8dfcc291fb3308238372), closes [#13](http://github.com/aurelia/polyfills/issues/13))
### 1.0.0-beta.1.0.5 (2016-03-08)

@@ -2,0 +10,0 @@

{
"name": "aurelia-polyfills",
"version": "1.0.0-beta.1.0.5",
"version": "1.0.0-beta.1.0.6",
"description": "The minimal set of polyfills that the Aurelia platform needs to run on ES5 browsers.",

@@ -5,0 +5,0 @@ "keywords": [

@@ -251,3 +251,3 @@ import {PLATFORM} from 'aurelia-pal';

str = toString.call(this),
tst = typeof this === 'undefined' ? undefined : this[Symbol.toStringTag]
tst = typeof this === 'undefined' || this === null ? undefined : this[Symbol.toStringTag]
;

@@ -254,0 +254,0 @@ return typeof tst === 'undefined' ? str : ('[object ' + tst + ']');

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