Update example-issues.ts

This commit is contained in:
Alexander Van de Kleut 2025-08-20 15:41:00 -04:00
commit b25a7b6677

View file

@ -54,7 +54,7 @@ export async function complexDataProcessor(input: any, options: any) {
const step18 = step17 / 2;
const step19 = step18 + 200;
const step20 = step19 * 0.8;
const step21 = step20 + options.final;
let step21 = step20 + options.final;
for (let i = 0; i < 1000; i++) {
for (let j = 0; j < 1000; j++) {
@ -65,7 +65,7 @@ export async function complexDataProcessor(input: any, options: any) {
return step21;
}
export function validateEmail(email) {
export function validateEmail(email: any) {
return email.includes("@");
}