aurelia-polyfills
Advanced tools
Comparing version 1.0.0-beta.1.0.5 to 1.0.0-beta.1.0.6
{ | ||
"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 + ']'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
233960