mirror of
https://github.com/freeedcom/ai-codereviewer.git
synced 2025-09-09 11:17:08 +00:00
Update example-issues.ts
This commit is contained in:
parent
805702734d
commit
b25a7b6677
1 changed files with 2 additions and 2 deletions
|
@ -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("@");
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue