0.0.1 • Published 23 days ago

gymath v0.0.1

Weekly downloads
-
License
MIT
Repository
github
Last release
23 days ago

gymath

Math helper for gym meatheads.

Example

import { calculatePlates } from 'gymath';

// how many plates to put on each side of the barbell
const plates = calculatePlates(275); 

console.log(plates); // { 45: 2, 25: 1 }

// custom barbell weight
const platesUsing35lbsBar = calculatePlates(135, { barWeight: 35 }); 
console.log(platesUsing35lbsBar ); // { 45: 1, 5: 1 }
0.0.1

23 days ago