Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am juhoojala on github.
  • I am juhoojala (https://keybase.io/juhoojala) on keybase.
  • I have a public key whose fingerprint is CF7A 3861 4601 1FC6 1F32 C547 1F9E 7448 C4A1 9532

To claim this, I am signing this object:

var MortalityModel = function(rates, cods)
{
this.rates = rates;
this.cods = cods;
this.estimateQx = true;
if (!rates) throw "rates is null";
if (!cods) throw "cods is null";
};