Skip to content

Commit

Permalink
feat(education): Add qualifications (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
72636c authored Jul 14, 2020
1 parent 4844e9a commit 6a9aa91
Show file tree
Hide file tree
Showing 9 changed files with 901 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,27 @@ fakeHr.education.institutions.all[0];
// }
```

### `education.qualifications`

Get a list of education qualifications.

```typescript
import { fakeHr } from 'fake-hr';

fakeHr.education.qualifications.all;
// EducationQualification[]

fakeHr.education.qualifications.filter({ level: [2, 3] });
// EducationQualification[]

fakeHr.education.qualifications.all[0];
// {
// countries: [ 'au' ],
// level: 2,
// name: 'Certificate I in Aboriginal and Torres Strait Islander Language and Knowledge Work'
// }
```

## Development

### Prerequisites
Expand Down
1 change: 1 addition & 0 deletions src/education/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export * as institutions from './institutions';
export * as qualifications from './qualifications';
Loading

0 comments on commit 6a9aa91

Please sign in to comment.