All Downloads are FREE. Search and download functionalities are using the official Maven repository.

node_modules.xtend.immutable.js Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
module.exports = extend

var hasOwnProperty = Object.prototype.hasOwnProperty;

function extend() {
    var target = {}

    for (var i = 0; i < arguments.length; i++) {
        var source = arguments[i]

        for (var key in source) {
            if (hasOwnProperty.call(source, key)) {
                target[key] = source[key]
            }
        }
    }

    return target
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy