# market helpers

Helpers for market solutions.

Use "export" for every function or variable to be exported for using dynamic import.

_Example_
file location _src/someScript.js_
```
export function log (logData) {
    console.log(logData);
}
```

In file where you want to use the function in the example above use dynamic import.
Production mode:
```
const {log : HereIsYourAnyAliasForLogFunction} = await import(`https://${REPLACE_BY_REAL_HOST}/src/someScript.js`);
HereIsYourAnyAliasForLogFunction('Foo');
```
