mirror of
https://github.com/iib0011/omni-tools.git
synced 2025-11-07 17:34:56 +05:30
writing standards fix
This commit is contained in:
parent
37cea3e45c
commit
6cac75ee88
1 changed files with 2 additions and 2 deletions
|
|
@ -4,9 +4,9 @@ export function listOfIntegers(
|
|||
step: number,
|
||||
separator: string) {
|
||||
const result: number[] = [];
|
||||
for (let i: number= 0; i <number_of_numbers; i++) {
|
||||
for (let i: number = 0; i < number_of_numbers; i++) {
|
||||
const value: number = first_value + i * step;
|
||||
result.push(value);
|
||||
}
|
||||
return result.join(separator);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue