https://github.com/janesconference/KievII
Revision 23aef9feac5b57abd9e268ef7d2d49a8df7bea25 authored by Cristiano Belloni on 30 August 2013, 16:44:43 UTC, committed by Cristiano Belloni on 30 August 2013, 16:44:43 UTC
1 parent 6a51360
Raw File
Tip revision: 23aef9feac5b57abd9e268ef7d2d49a8df7bea25 authored by Cristiano Belloni on 30 August 2013, 16:44:43 UTC
Requestng exact version 1.0.0
Tip revision: 23aef9f
common.js
(function () {

/* The K2 element! */
var K2 = {};

/* Some general-purpose function */
K2.extend = function (subClass, superClass) {
    var F = function() {};
    F.prototype = superClass.prototype;
    subClass.prototype = new F();
    subClass.prototype.constructor = subClass;
    subClass.superclass = superClass.prototype;
    if (superClass.prototype.constructor == Object.prototype.constructor) {
        superClass.prototype.constructor = superClass;
    }
};

K2.clone = function (obj) {
    var copy;
    
    // Handle the 3 simple types, and null or undefined
    if (null === obj || "object" !== typeof obj) return obj;
    
    // Handle Date
    if (obj instanceof Date) {
        copy = new Date();
        copy.setTime(obj.getTime());
        return copy;
    }
    
    // Handle Array
    if (obj instanceof Array) {
        copy = [];
        for (var i = 0, len = obj.length; i < len; ++i) {
            copy[i] = clone(obj[i]);
        }
        return copy;
    }
    
    // Handle Object
    if (obj instanceof Object) {
        copy = {};
        for (var attr in obj) {
            if (obj.hasOwnProperty(attr)) copy[attr] = clone(obj[attr]);
        }
        return copy;
    }
    
    throw new Error("Unable to copy obj! Its type isn't supported.");
};

/**
 * merge 2 objects into a new object
 * @param   object  obj1
 * @param   object  obj2
 * @return  object  merged object
 */
K2.mergeObject = function(obj1, obj2) {
    var output = {};

    if(!obj2) {
        return obj1;
    }

    for (var prop in obj1) {
        if (prop in obj2) {
            output[prop] = obj2[prop];
        } else {
            output[prop] = obj1[prop];
        }
    }
    return output;
};
back to top