8 lines
113 B
JavaScript
8 lines
113 B
JavaScript
|
const reSize = (width, height) => {
|
||
|
global.windows.setSize(width, height);
|
||
|
};
|
||
|
|
||
|
module.exports = {
|
||
|
reSize,
|
||
|
};
|