( a )
| 59 | // `arrayify` takes an array-like object and turns it into real Array |
| 60 | // to make all the Array.prototype goodness available. |
| 61 | var arrayify = function( a ) { |
| 62 | return [].slice.call( a ); |
| 63 | }; |
| 64 | |
| 65 | // `css` function applies the styles given in `props` object to the element |
| 66 | // given as `el`. It runs all property names through `pfx` function to make |