0.1.2 • Published 4 years ago

ingredient-math v0.1.2

Weekly downloads
1
License
MIT
Repository
-
Last release
4 years ago

Ingredient Math

This library is for converting recipe ingredients based on a serving size factor.

Installation

yarn add ingredient-math

Example

import { convertIngredient } from 'ingredient-math';

const ingredient = "1 teaspoon sugar"
const servingsFactor(2)

> convertIngredient(ingredient, servingsFactor)
{
	quantity: "2",
	unit: "teaspoons"
	ingredient: "sugar"
}

It will also automatically calculate and convert units:

import { convertIngredient } from 'ingredient-math';

const ingredient = "1 teaspoon sugar"
const servingsFactor(3)

> convertIngredient(ingredient, servingsFactor)

{
	quantity: "3",
	unit: "tablespoons"
	ingredient: "sugar"
}