Compare commits
No commits in common. "c5d761b3ae2700a68a142103f43b06f7d5c2de0a" and "ae9c6eeb60cd5e350012c3e393ff8b846326e468" have entirely different histories.
c5d761b3ae
...
ae9c6eeb60
|
@ -37,7 +37,7 @@ export class Client {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
export async function load(module) {
|
export async function load(module) {
|
||||||
if (callModule && connectModule) {
|
if (callModule !== null && connectModule !== null) {
|
||||||
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 && connectModule) {
|
if (callModule !== null && connectModule !== null) {
|
||||||
if (module) {
|
if (module) {
|
||||||
return {
|
return {
|
||||||
callModule: callModule.bind(undefined, module),
|
callModule: callModule.bind(undefined, module),
|
||||||
|
|
Reference in New Issue