From c8ff3bbc1e27203074f73f80c0de4e4a60fcf351 Mon Sep 17 00:00:00 2001 From: Emanuel Souza Date: Tue, 29 Oct 2019 20:24:46 -0300 Subject: [PATCH] update README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c1c8608..4cf7a02 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,17 @@ -# body-mass-index +# bmi-utils A Javascript lib to calculate [body mass index](https://en.wikipedia.org/wiki/Body_mass_index). -## Install +## Install [![npm version](https://badge.fury.io/js/bmi-utils.svg)](https://badge.fury.io/js/bmi-utils) ```sh -yarn add body-mass-index +yarn add bmi-utils ``` ## Usage ```js -import { calculate } from 'body-mass-index' +import { calculate } from 'bmi-utils' // ... your code here ```