CORE-POS/IS4C

View on GitHub
pos/electron/js/windows.js

Summary

Maintainability
A
0 mins
Test Coverage

let win = { main: null, secondary: null };

function getWindow(name) {
    return win[name];
}

function setWindow(name, w) {
    win[name] = w;
}

module.exports = { get: getWindow, set: setWindow };