mirror of
https://github.com/WhitestormJS/whs.js.git
synced 2025-12-08 20:26:23 +00:00
11 lines
221 B
JavaScript
11 lines
221 B
JavaScript
export function connect() {
|
|
if (!(window.parent && window.parent.__ExamplesAPI)) return;
|
|
|
|
const api = window.parent.__ExamplesAPI;
|
|
api.connected = true;
|
|
|
|
console.log(`${api.PREFIX}: connected.`);
|
|
|
|
return api;
|
|
}
|