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

package.src.style-spec.util.extend.js Maven / Gradle / Ivy

The newest version!
// @flow

export default function (output: any, ...inputs: Array) {
    for (const input of inputs) {
        for (const k in input) {
            output[k] = input[k];
        }
    }
    return output;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy