Skip to content

Commit

Permalink
Code tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver Farrell committed Jul 31, 2015
1 parent 95de7c3 commit 742832e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/inlineSVG.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
* @private
* @param {Function} fn
*/
var extend = function (fn) {
var extend = function () {

// Variables
var extended = {};
Expand All @@ -49,7 +49,7 @@
if ( Object.prototype.hasOwnProperty.call( obj, prop ) ) {
// If deep merge and property is an object, merge properties
if ( deep && Object.prototype.toString.call(obj[prop]) === '[object Object]' ) {
extended[prop] = buoy.extend( true, extended[prop], obj[prop] );
extended[prop] = extend( true, extended[prop], obj[prop] );
} else {
extended[prop] = obj[prop];
}
Expand Down

0 comments on commit 742832e

Please sign in to comment.