Merge branch 'master' into 73-implement-nfp-logic-for-mucus-mode

This commit is contained in:
Julia Friesel
2018-07-16 13:50:57 +02:00
16 changed files with 601 additions and 371 deletions
+16
View File
@@ -0,0 +1,16 @@
export default function (feeling, texture) {
const feelingMapping = {
0: 0,
1: 1,
2: 2,
3: 4
}
const textureMapping = {
0: 0,
1: 3,
2: 4
}
const nfpFeelingValue = feelingMapping[feeling]
const nfpTextureValue = textureMapping[texture]
return Math.max(nfpFeelingValue, nfpTextureValue)
}