Compare commits
2 Commits
ae9c6eeb60
...
c5d761b3ae
Author | SHA1 | Date |
---|---|---|
Derrick Hammer | c5d761b3ae | |
Derrick Hammer | fb471accce |
|
@ -37,7 +37,7 @@ export class Client {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export async function load(module) {
|
export async function load(module) {
|
||||||
if (callModule !== null && connectModule !== null) {
|
if (callModule && connectModule) {
|
||||||
if (module) {
|
if (module) {
|
||||||
return {
|
return {
|
||||||
callModule: callModule.bind(undefined, module),
|
callModule: callModule.bind(undefined, module),
|
||||||
|
|
|
@ -76,7 +76,7 @@ export abstract class Client {
|
||||||
export async function load(
|
export async function load(
|
||||||
module?: string
|
module?: string
|
||||||
): Promise<ModuleBag | ModuleBagBound> {
|
): Promise<ModuleBag | ModuleBagBound> {
|
||||||
if (callModule !== null && connectModule !== null) {
|
if (callModule && connectModule) {
|
||||||
if (module) {
|
if (module) {
|
||||||
return {
|
return {
|
||||||
callModule: callModule.bind(undefined, module),
|
callModule: callModule.bind(undefined, module),
|
||||||
|
|
Reference in New Issue