aurelia-polyfills
Advanced tools
Comparing version 1.0.0-beta.1.1.0 to 1.0.0-beta.1.1.1
{ | ||
"name": "aurelia-polyfills", | ||
"version": "1.0.0-beta.1.1.0", | ||
"version": "1.0.0-beta.1.1.1", | ||
"description": "The minimal set of polyfills that the Aurelia platform needs to run on ES5 browsers.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -26,3 +26,3 @@ define(['aurelia-pal'], function (_aureliaPal) { | ||
defineProperty = Object[DP], | ||
defineProperties = Object[DPies], | ||
$defineProperties = Object[DPies], | ||
descriptor = gOPD(Object, GOPN), | ||
@@ -136,3 +136,3 @@ ObjectProto = Object.prototype, | ||
} else { | ||
defineProperties(o, descriptors); | ||
$defineProperties(o, descriptors); | ||
} | ||
@@ -726,3 +726,5 @@ return o; | ||
Reflect.getOwnMetadata = function (metadataKey, target, targetKey) { | ||
return ((target[metadataContainerKey] || emptyMetadata)[targetKey] || emptyMetadata)[metadataKey]; | ||
if (target.hasOwnProperty(metadataContainerKey)) { | ||
return (target[metadataContainerKey][targetKey] || emptyMetadata)[metadataKey]; | ||
} | ||
}; | ||
@@ -729,0 +731,0 @@ } |
@@ -27,3 +27,3 @@ import {PLATFORM} from 'aurelia-pal'; | ||
defineProperty = Object[DP], | ||
defineProperties = Object[DPies], | ||
$defineProperties = Object[DPies], | ||
descriptor = gOPD(Object, GOPN), | ||
@@ -150,3 +150,3 @@ ObjectProto = Object.prototype, | ||
} else { | ||
defineProperties(o, descriptors); | ||
$defineProperties(o, descriptors); | ||
} | ||
@@ -823,3 +823,5 @@ return o; | ||
Reflect.getOwnMetadata = function(metadataKey, target, targetKey) { | ||
return ((target[metadataContainerKey] || emptyMetadata)[targetKey] || emptyMetadata)[metadataKey]; | ||
if (target.hasOwnProperty(metadataContainerKey)) { | ||
return (target[metadataContainerKey][targetKey] || emptyMetadata)[metadataKey]; | ||
} | ||
}; | ||
@@ -826,0 +828,0 @@ } |
@@ -27,3 +27,3 @@ 'use strict'; | ||
defineProperty = Object[DP], | ||
defineProperties = Object[DPies], | ||
$defineProperties = Object[DPies], | ||
descriptor = gOPD(Object, GOPN), | ||
@@ -137,3 +137,3 @@ ObjectProto = Object.prototype, | ||
} else { | ||
defineProperties(o, descriptors); | ||
$defineProperties(o, descriptors); | ||
} | ||
@@ -727,3 +727,5 @@ return o; | ||
Reflect.getOwnMetadata = function (metadataKey, target, targetKey) { | ||
return ((target[metadataContainerKey] || emptyMetadata)[targetKey] || emptyMetadata)[metadataKey]; | ||
if (target.hasOwnProperty(metadataContainerKey)) { | ||
return (target[metadataContainerKey][targetKey] || emptyMetadata)[metadataKey]; | ||
} | ||
}; | ||
@@ -730,0 +732,0 @@ } |
@@ -25,3 +25,3 @@ import { PLATFORM } from 'aurelia-pal'; | ||
defineProperty = Object[DP], | ||
defineProperties = Object[DPies], | ||
$defineProperties = Object[DPies], | ||
descriptor = gOPD(Object, GOPN), | ||
@@ -135,3 +135,3 @@ ObjectProto = Object.prototype, | ||
} else { | ||
defineProperties(o, descriptors); | ||
$defineProperties(o, descriptors); | ||
} | ||
@@ -726,3 +726,5 @@ return o; | ||
Reflect.getOwnMetadata = function (metadataKey, target, targetKey) { | ||
return ((target[metadataContainerKey] || emptyMetadata)[targetKey] || emptyMetadata)[metadataKey]; | ||
if (target.hasOwnProperty(metadataContainerKey)) { | ||
return (target[metadataContainerKey][targetKey] || emptyMetadata)[metadataKey]; | ||
} | ||
}; | ||
@@ -729,0 +731,0 @@ } |
@@ -33,3 +33,3 @@ 'use strict'; | ||
defineProperty = Object[DP], | ||
defineProperties = Object[DPies], | ||
$defineProperties = Object[DPies], | ||
descriptor = gOPD(Object, GOPN), | ||
@@ -143,3 +143,3 @@ ObjectProto = Object.prototype, | ||
} else { | ||
defineProperties(o, descriptors); | ||
$defineProperties(o, descriptors); | ||
} | ||
@@ -734,3 +734,5 @@ return o; | ||
Reflect.getOwnMetadata = function (metadataKey, target, targetKey) { | ||
return ((target[metadataContainerKey] || emptyMetadata)[targetKey] || emptyMetadata)[metadataKey]; | ||
if (target.hasOwnProperty(metadataContainerKey)) { | ||
return (target[metadataContainerKey][targetKey] || emptyMetadata)[metadataKey]; | ||
} | ||
}; | ||
@@ -737,0 +739,0 @@ } |
@@ -0,1 +1,9 @@ | ||
### 1.0.0-beta.1.1.1 (2016-03-29) | ||
#### Bug Fixes | ||
* **symbol:** fix Object.defineProperties ([f548033d](http://github.com/aurelia/polyfills/commit/f548033d486a26770195daf95a94e905510106f1)) | ||
### 1.0.0-beta.1.1.0 (2016-03-22) | ||
@@ -2,0 +10,0 @@ |
{ | ||
"name": "aurelia-polyfills", | ||
"version": "1.0.0-beta.1.1.0", | ||
"version": "1.0.0-beta.1.1.1", | ||
"description": "The minimal set of polyfills that the Aurelia platform needs to run on ES5 browsers.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -13,3 +13,5 @@ import {PLATFORM} from 'aurelia-pal'; | ||
Reflect.getOwnMetadata = function(metadataKey, target, targetKey) { | ||
return ((target[metadataContainerKey] || emptyMetadata)[targetKey] || emptyMetadata)[metadataKey]; | ||
if (target.hasOwnProperty(metadataContainerKey)) { | ||
return (target[metadataContainerKey][targetKey] || emptyMetadata)[metadataKey]; | ||
} | ||
}; | ||
@@ -16,0 +18,0 @@ } |
@@ -27,3 +27,3 @@ import {PLATFORM} from 'aurelia-pal'; | ||
defineProperty = Object[DP], | ||
defineProperties = Object[DPies], | ||
$defineProperties = Object[DPies], | ||
descriptor = gOPD(Object, GOPN), | ||
@@ -150,3 +150,3 @@ ObjectProto = Object.prototype, | ||
} else { | ||
defineProperties(o, descriptors); | ||
$defineProperties(o, descriptors); | ||
} | ||
@@ -153,0 +153,0 @@ return o; |
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
227580
5004