Difference between revisions of "MediaWiki:PatientCalculators/anatomy.js"

From WikiAnesthesia
Line 1: Line 1:
module.exports = {
{
     bmi: {
     bmi: {
         abbreviation: 'bmi',
         abbreviation: 'bmi',

Revision as of 07:15, 1 July 2021

{
    bmi: {
        abbreviation: 'bmi',
        calculate: function( patientData ) {
            console.log( 'Calculating BMI!' );
        },
        name: 'Body mass index',
        units: 'kg/m^2'
    }
};