code-intelligence.com/cifuzz@v0.40.0/examples/node-typescript/ExploreMe.ts (about)

     1  export function exploreMe(a: number, b: number, c: string): void {
     2  	if (a >= 20000) {
     3  		if (b >= 2000000) {
     4  			if (b - a < 100000) {
     5  				if (c.startsWith("@")) {
     6  					throw new Error("Crash!");
     7  				}
     8  			}
     9  		}
    10  	}
    11  }