mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-02 17:39:58 +08:00
16 lines
286 B
JavaScript
16 lines
286 B
JavaScript
/*
|
|
_ __ _ __
|
|
| | / /___ _(_) /____
|
|
| | /| / / __ `/ / / ___/
|
|
| |/ |/ / /_/ / / (__ )
|
|
|__/|__/\__,_/_/_/____/
|
|
The lightweight framework for web-like apps
|
|
(c) Lea Anthony 2019-present
|
|
*/
|
|
|
|
/* jshint esversion: 9 */
|
|
|
|
export function WindowReload() {
|
|
window.location.reload();
|
|
}
|