# Swindle Core
Utilitiy classes for data manipulation.

# Installation
To install Swindle/Core with NPM,
```
npm install @swindle/core
```
With yarn,
```
yarn add @swindle/core
```
# Usage
Swindle provides a variety of Utility classes
- [Common Interfaces and Types](src/common/README.md)
- [Dates and Durations](src/dates/README.md)
- [Email Address](src/email/README.md)
- [Geography](src/geography/README.md)
- [Hashing](src/crypto/README.md)
- [Phone Number](src/phone-number/phone-number/README.md)
- [UUID](src/id/uuid/README.md)
- [Formatters](src/formatters/README.md): Utilities to help format data.

# Tests
To run the tests, use the following command with NPM
```
npm run test
```
with Yarn
```
yarn test
```