Skip to content

Commit

Permalink
remove financial package. closes #115
Browse files Browse the repository at this point in the history
  • Loading branch information
millermedeiros committed Dec 20, 2012
1 parent ceae495 commit 4ef4680
Show file tree
Hide file tree
Showing 17 changed files with 0 additions and 477 deletions.
2 changes: 0 additions & 2 deletions doc/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -218,8 +218,6 @@ <h2>Documentation</h2>

<li><a href="collection.html">collection</a></li>

<li><a href="financial.html">financial</a></li>

<li><a href="function.html">function</a></li>

<li><a href="lang.html">lang</a></li>
Expand Down
36 changes: 0 additions & 36 deletions doc/html/sidebar_.html
Original file line number Diff line number Diff line change
Expand Up @@ -261,42 +261,6 @@ <h4>some(list, callback, [thisObj]):Boolean</h4>

</div>

<h3 class="toc-mod-title"><a href="financial.html">financial</a></h3>
<div class="toc-list">

<a class="toc-item" href="financial.html#compoundInterest">
<h4>compoundInterest(interestRate, nPeriods, presentValue):Number</h4>
<span class="desc">Calculates compount interest over
a period.</span>
</a>

<a class="toc-item" href="financial.html#futureValue">
<h4>futureValue(rate, nPeriods, payment[, presentValue, isDue]):Number</h4>
<span class="desc">Calculate the future value of an investment based on periodic, constant payments at a constant interest rate. (aka.
annuity) - Works
similarly to Microsoft Excel <code>FV()</code> function.</span>
</a>

<a class="toc-item" href="financial.html#npv">
<h4>npv(discountRate, values):Number</h4>
<span class="desc">Calculates the net present value.</span>
</a>

<a class="toc-item" href="financial.html#payment">
<h4>payment(rate, nPeriods, presentValue, futureValue, isDue):Number</h4>
<span class="desc">Calculates the payment for a loan based on constant payments and a constant interest rate. Similar to Microsoft Excel <code>PMT()</code> function. (aka. mortgage or
annuity)</span>
</a>

<a class="toc-item" href="financial.html#presentValue">
<h4>presentValue(rate, nPeriods, payment[, futurevalue, isDue]):Number</h4>
<span class="desc">Returns the present value of an investment. The present value is the total amount that a series of future payments is worth now (aka.
annuity). - Works
similarly to Microsoft Excel <code>PV()</code> function.</span>
</a>

</div>

<h3 class="toc-mod-title"><a href="function.html">function</a></h3>
<div class="toc-list">

Expand Down
80 changes: 0 additions & 80 deletions doc/mdown/financial.md

This file was deleted.

13 changes: 0 additions & 13 deletions src/financial.js

This file was deleted.

13 changes: 0 additions & 13 deletions src/financial/compoundInterest.js

This file was deleted.

26 changes: 0 additions & 26 deletions src/financial/futureValue.js

This file was deleted.

22 changes: 0 additions & 22 deletions src/financial/npv.js

This file was deleted.

28 changes: 0 additions & 28 deletions src/financial/payment.js

This file was deleted.

25 changes: 0 additions & 25 deletions src/financial/presentValue.js

This file was deleted.

1 change: 0 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ define(function(require){
return {
'array' : require('./array'),
'collection' : require('./collection'),
'financial' : require('./financial'),
'function' : require('./function'),
'lang' : require('./lang'),
'math' : require('./math'),
Expand Down
1 change: 0 additions & 1 deletion tests/runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ var opts = {
var specs = [
'spec-array',
'spec-collection',
'spec-financial',
'spec-function',
'spec-lang',
'spec-math',
Expand Down
23 changes: 0 additions & 23 deletions tests/spec/financial/spec-compoundInterest.js

This file was deleted.

50 changes: 0 additions & 50 deletions tests/spec/financial/spec-futureValue.js

This file was deleted.

40 changes: 0 additions & 40 deletions tests/spec/financial/spec-npv.js

This file was deleted.

Loading

0 comments on commit 4ef4680

Please sign in to comment.