mirror of
https://github.com/arx-research/libhalo.git
synced 2026-01-10 05:38:10 -05:00
14 lines
377 B
JavaScript
14 lines
377 B
JavaScript
/**
|
|
* LibHaLo - Programmatically interact with HaLo tags from the web browser, mobile application or the desktop.
|
|
* Copyright by Arx Research, Inc., a Delaware corporation
|
|
* License: MIT
|
|
*/
|
|
|
|
import * as all_exports from "./web_apis.js";
|
|
|
|
if (typeof window !== "undefined") {
|
|
Object.keys(all_exports).forEach((key) => {
|
|
window[key] = all_exports[key];
|
|
});
|
|
}
|