aurelia-polyfills
Advanced tools
Comparing version 0.1.2 to 1.0.0-beta.1.0.0
# Acknowledgements | ||
The object.Observe, String, Number and Array polyfills come from the MDN documentation. The collections polyfills come from https://github.com/WebReflection/es6-collections. Many thanks to the individuals who worked so hard on these implementations. License are included below. | ||
The Object.assign(), String, Number and Array polyfills come from the MDN documentation. The collections polyfills come from https://github.com/WebReflection/es6-collections. The Reflect.construct polyfill is based on the CoreJS implementation. Many thanks to the individuals who worked so hard on these implementations. License are included below. | ||
==== | ||
WebReflection License | ||
Copyright (C) 2011 by Andrea Giammarchi, @WebReflection | ||
@@ -23,2 +27,26 @@ | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. | ||
==== | ||
CoreJS License | ||
Copyright (c) 2014-2016 Denis Pushkarev | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
{ | ||
"name": "aurelia-polyfills", | ||
"version": "0.1.2", | ||
"version": "1.0.0-beta.1.0.0", | ||
"description": "The minimal set of polyfills that the Aurelia platform needs to run on ES5 browsers.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -19,3 +19,3 @@ System.config({ | ||
"babel-runtime": "npm:babel-runtime@5.8.35", | ||
"core-js": "npm:core-js@2.1.0", | ||
"core-js": "npm:core-js@2.1.3", | ||
"github:jspm/nodelibs-assert@0.1.0": { | ||
@@ -39,3 +39,3 @@ "assert": "npm:assert@1.3.0" | ||
}, | ||
"npm:core-js@2.1.0": { | ||
"npm:core-js@2.1.3": { | ||
"fs": "github:jspm/nodelibs-fs@0.1.2", | ||
@@ -42,0 +42,0 @@ "path": "github:jspm/nodelibs-path@0.1.0", |
@@ -370,2 +370,3 @@ define(['exports', 'aurelia-pal'], function (exports, _aureliaPal) { | ||
var metadataContainerKey = '__metadata__'; | ||
var bind = Function.prototype.bind; | ||
@@ -399,3 +400,3 @@ if (typeof _aureliaPal.PLATFORM.global.Reflect === 'undefined') { | ||
if (typeof Reflect.construct !== 'function') { | ||
Reflect.construct = function (target, args) { | ||
Reflect.construct = function (Target, args) { | ||
if (args) { | ||
@@ -402,0 +403,0 @@ switch (args.length) { |
@@ -402,2 +402,3 @@ import {PLATFORM} from 'aurelia-pal'; | ||
const metadataContainerKey = '__metadata__'; | ||
const bind = Function.prototype.bind; | ||
@@ -431,3 +432,3 @@ if (typeof PLATFORM.global.Reflect === 'undefined') { | ||
if (typeof Reflect.construct !== 'function') { | ||
Reflect.construct = function(target, args) { | ||
Reflect.construct = function(Target, args) { | ||
if (args) { | ||
@@ -434,0 +435,0 @@ switch (args.length){ |
@@ -371,2 +371,3 @@ 'use strict'; | ||
var metadataContainerKey = '__metadata__'; | ||
var bind = Function.prototype.bind; | ||
@@ -400,3 +401,3 @@ if (typeof _aureliaPal.PLATFORM.global.Reflect === 'undefined') { | ||
if (typeof Reflect.construct !== 'function') { | ||
Reflect.construct = function (target, args) { | ||
Reflect.construct = function (Target, args) { | ||
if (args) { | ||
@@ -403,0 +404,0 @@ switch (args.length) { |
@@ -402,2 +402,3 @@ import {PLATFORM} from 'aurelia-pal'; | ||
const metadataContainerKey = '__metadata__'; | ||
const bind = Function.prototype.bind; | ||
@@ -431,3 +432,3 @@ if (typeof PLATFORM.global.Reflect === 'undefined') { | ||
if (typeof Reflect.construct !== 'function') { | ||
Reflect.construct = function(target, args) { | ||
Reflect.construct = function(Target, args) { | ||
if (args) { | ||
@@ -434,0 +435,0 @@ switch (args.length){ |
System.register(['aurelia-pal'], function (_export) { | ||
'use strict'; | ||
var PLATFORM, emptyMetadata, metadataContainerKey; | ||
var PLATFORM, emptyMetadata, metadataContainerKey, bind; | ||
return { | ||
@@ -377,2 +377,3 @@ setters: [function (_aureliaPal) { | ||
metadataContainerKey = '__metadata__'; | ||
bind = Function.prototype.bind; | ||
@@ -406,3 +407,3 @@ if (typeof PLATFORM.global.Reflect === 'undefined') { | ||
if (typeof Reflect.construct !== 'function') { | ||
Reflect.construct = function (target, args) { | ||
Reflect.construct = function (Target, args) { | ||
if (args) { | ||
@@ -409,0 +410,0 @@ switch (args.length) { |
@@ -0,1 +1,11 @@ | ||
### 1.0.0-beta.1.0.0 (2016-03-01) | ||
#### Bug Fixes | ||
* **reflect:** | ||
* incorrect arg casing ([52f06db5](http://github.com/aurelia/polyfills/commit/52f06db5682042ee1b3c4601a4133b10e446e7b4)) | ||
* missing bind reference ([89964a16](http://github.com/aurelia/polyfills/commit/89964a1602ad216ef1db0f04823f62dd04a67dca)) | ||
### 0.1.2 (2016-02-17) | ||
@@ -2,0 +12,0 @@ |
{ | ||
"name": "aurelia-polyfills", | ||
"version": "0.1.2", | ||
"version": "1.0.0-beta.1.0.0", | ||
"description": "The minimal set of polyfills that the Aurelia platform needs to run on ES5 browsers.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -5,2 +5,3 @@ import {PLATFORM} from 'aurelia-pal'; | ||
const metadataContainerKey = '__metadata__'; | ||
const bind = Function.prototype.bind; | ||
@@ -34,3 +35,3 @@ if (typeof PLATFORM.global.Reflect === 'undefined') { | ||
if (typeof Reflect.construct !== 'function') { | ||
Reflect.construct = function(target, args) { | ||
Reflect.construct = function(Target, args) { | ||
if (args) { | ||
@@ -37,0 +38,0 @@ switch (args.length){ |
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
157089
3005