vibetunnel
Version:
Terminal sharing server with web interface - supports macOS, Linux, and headless environments
12 lines (11 loc) • 373 B
JavaScript
;
/**
* Copyright (c) 2017, Daniel Imms (MIT License).
* Copyright (c) 2018, Microsoft Corporation (MIT License).
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.assign = assign;
function assign(target, ...sources) {
sources.forEach(source => Object.keys(source).forEach(key => target[key] = source[key]));
return target;
}