Skip to content

Commit

Permalink
refactor: Use datatype.number() function instead of random.number() (f…
Browse files Browse the repository at this point in the history
  • Loading branch information
luciferreeves authored and pkuczynski committed Jan 21, 2022
1 parent 6a45e9a commit e750453
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/internet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export class Internet {
avatar(): string {
return (
'https://cloudflare-ipfs.com/ipfs/Qmd3W5DuhgHirLHGVixi6V76LhCkZUz6pnFt5AJBiyvHye/avatar/' +
this.faker.random.number(1249) +
this.faker.datatype.number(1249) +
'.jpg'
);
}
Expand Down

0 comments on commit e750453

Please sign in to comment.