Skip to content

Latest commit

 

History

History
72 lines (67 loc) · 2.35 KB

caller.md

File metadata and controls

72 lines (67 loc) · 2.35 KB

Caller

The caller is any code that calls your function or method.

For example:

function fn1(input: any): void {
    // ....
}

// this is the caller
fn1("hello world!");