@@ -13,16 +13,16 @@ if (typeof Promise === 'undefined') {
13
13
// ES5 Polyfills
14
14
// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/bind
15
15
if ( ! Function . prototype . bind ) {
16
- Function . prototype . bind = function ( oThis ) {
16
+ Function . prototype . bind = function ( oThis ) {
17
17
if ( typeof this !== 'function' ) {
18
18
throw new TypeError ( 'Function.prototype.bind - what is trying to be bound is not callable' ) ;
19
19
}
20
20
21
21
var aArgs = Array . prototype . slice . call ( arguments , 1 ) ;
22
22
var fToBind = this ;
23
- var NoOp = function ( ) {
23
+ var NoOp = function ( ) {
24
24
} ;
25
- var fBound = function ( ) {
25
+ var fBound = function ( ) {
26
26
return fToBind . apply ( this instanceof NoOp && oThis ? this : oThis ,
27
27
aArgs . concat ( Array . prototype . slice . call ( arguments ) ) ) ;
28
28
} ;
@@ -34,7 +34,6 @@ if (!Function.prototype.bind) {
34
34
} ;
35
35
}
36
36
37
-
38
37
// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/map
39
38
if ( ! Array . prototype . map ) {
40
39
Array . prototype . map = function ( callback , thisArg ) {
@@ -55,7 +54,8 @@ if (!Array.prototype.map) {
55
54
var k = 0 ;
56
55
57
56
while ( k < len ) {
58
- var kValue , mappedValue ;
57
+ var kValue ;
58
+ var mappedValue ;
59
59
if ( k in O ) {
60
60
kValue = O [ k ] ;
61
61
mappedValue = callback . call ( T , kValue , k , O ) ;
@@ -99,7 +99,8 @@ if (!Array.prototype.filter) {
99
99
// See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach
100
100
if ( ! Array . prototype . forEach ) {
101
101
Array . prototype . forEach = function ( callback , thisArg ) {
102
- var T , k ;
102
+ var T ;
103
+ var k ;
103
104
if ( this === null || this === undefined ) {
104
105
throw new TypeError ( ' this is null or not defined' ) ;
105
106
}
0 commit comments