asa-swim-time-converter

1.0.8 • Public • Published

ASA Swim time converter

This is a javascript implementation of the published and ASA approved Factor Table conversion method.

Status

Build Status Coverage Status Greenkeeper badge Built with Grunt License: MIT NPM Version NPM Downloads

Getting Started

Include the library in your project. Pass the Stroke, Pool Length From / To and timing. The single function will return the convert time.

Prerequisites

What things you need to install the software and how to install them

None

Installing

Install the library using npm...

npm install --save asa-swim-time-converter

...or, take the library directly from githb

git clone https://github.com/paulcull/asa-swim-time-converter

This library uses supports promises as an option. The getTimePromise function when called returns a promise, allowing you to get on with anything else that you need to. There are no runtime 3rd party dependencies in this library.

Method 1

var getTime = require('asa-swim-time-converter').getTime;

console.log(getTime("50 Free", "25m", "50m", "31.0"))

Method 2

var getTime = require('asa-swim-time-converter').getTimePromise;

getTime("50 Free", "25m", "50m", "31.0").then(function(newTime){
    console.log(newTime);
})
  • Also check the tests and example

Supported Converstion distances

50m
33.33m
25m
20m
36.66y
27.5y
33.33y
25y
20y

Supported Strokes

50 Free
100 Free
200 Free
400 Free
800 Free
1500 Free
50 Breast
100 Breast
200 Breast
50 Fly
100 Fly
200 Fly
50 Back
100 Back
200 Back
200 IM
400 IM

Running the tests

There are a limited number of tests. Several negative tests and a couple of checks on times to convert

npm test

Deployment

Not designed to run stand-alone - this should be used as a libray.

Built With

  • NPM - Dependency Management
  • MOCHA - Test management
  • CHAI - BDD / TDD assertion (including with PROMISES)

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

TODO

These are things that should be done to complete.

  • Reduce / remove external dependancies
  • Add project documentation
  • Add simple example
  • Extend test cases to all strokes / pool lengths
  • Setup travis-ci
  • Add grunt to manage a min step and create a smaller footprint library
  • Introduce dependency monitoring
  • Publish to npm.org

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.

Authors

  • Paul Cullender - Initial work - paulcull

See also the list of contributors who participated in this project.

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • The excellent documentation on the method here made this all possible
  • The very reusable git documents from PurpleBooth

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.8
    10
    • latest

Version History

Package Sidebar

Install

npm i asa-swim-time-converter

Weekly Downloads

10

Version

1.0.8

License

MIT

Last publish

Collaborators

  • paulcull