This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

@marantesss/powerlifting-formulas
TypeScript icon, indicating that this package has built-in type declarations

0.2.1 • Public • Published

Powerlifting Formulas

Check this article to learn more about formulas.

Getting started

Install this package with you favorite package manager

npm install powerlifting-formulas
yarn add powerlifting-formulas
pnpm install powerlifting-formulas

Then use it like so:

import { wilks } from 'powerlifting-formulas'

// calculate OLD wilks formula for 82.5kg male lifer with 680kg lifted
wilks(82.5, 680, 'male')
// calculate new wilks formula for 120lbs female lifer with 425lbs lifted
wilks(120, 425, 'female', 'lb')

Formulas

Wilks before 2020

import { wilks } from 'powerlifting-formulas'

// calculate OLD wilks formula for 82.5kg male lifer with 680kg lifted
wilks(82.5, 680, 'male')
// calculate new wilks formula for 120lbs female lifer with 425lbs lifted
wilks(120, 425, 'female', 'lb')

Wilks After 2020

import { wilks2020 } from 'powerlifting-formulas'

// calculate OLD wilks formula for 82.5kg male lifer with 680kg lifted
wilks2020(82.5, 680, 'male')
// calculate new wilks formula for 120lbs female lifer with 425lbs lifted
wilks2020(120, 425, 'female', 'lb')

DOTS

import { dots } from 'powerlifting-formulas'

// calculate OLD wilks formula for 82.5kg male lifer with 680kg lifted
dots(82.5, 680, 'male')
// calculate new wilks formula for 120lbs female lifer with 425lbs lifted
dots(120, 425, 'female', 'lb')

Package Sidebar

Install

npm i @marantesss/powerlifting-formulas

Weekly Downloads

3

Version

0.2.1

License

MIT

Unpacked Size

8.46 kB

Total Files

19

Last publish

Collaborators

  • marantesss