1.0.1 • Published 3 years ago

@aaoeclipse/gym_backend v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
3 years ago

Gym Backend

My first package test

Installation

npm i @aaoeclipse/gym_backend

Examples

import { Workout, Exercise } from '@aaoeclipse/gym_backend'

const workout = new Workout('name');

// returns name
workout.getName()

Error handling

import { EmptyNameError } from '@aaoeclipse/gym_backend'

const name = '';
try {
    const test =  new Workout(name)
}catch (err){
    // EmptyNameError
}

All error types:

  • EmptyNameError: name is empty
1.0.1

3 years ago

1.0.0

3 years ago