Skip to content

Commit

Permalink
feat: migrate internet (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinigami92 authored and damienwebdev committed Jan 14, 2022
1 parent 168a211 commit 8fcfcc6
Show file tree
Hide file tree
Showing 2 changed files with 529 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/index.ts
Expand Up @@ -4,6 +4,7 @@ import { Fake } from './fake';
import { Git } from './git';
import { Hacker } from './hacker';
import { Helpers } from './helpers';
import { Internet } from './internet';
import { Mersenne } from './mersenne';
import { Name } from './name';
import { Random } from './random';
Expand Down Expand Up @@ -180,7 +181,7 @@ export class Faker {
// TODO @Shinigami92 2022-01-12: iban was not used
// readonly iban = new (require('./iban'))(this);
readonly image = new (require('./image'))(this);
readonly internet = new (require('./internet'))(this);
readonly internet: Internet = new Internet(this);
readonly lorem = new (require('./lorem'))(this);
readonly music = new (require('./music'))(this);
readonly name: Name = new Name(this);
Expand Down

0 comments on commit 8fcfcc6

Please sign in to comment.