summaryrefslogtreecommitdiff
path: root/node_modules/locutus/php/math/exp.js
blob: be2e5f3842e03c1385ff7ffe3360b8f9c79e806e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
"use strict";

module.exports = function exp(arg) {
  //  discuss at: http://locutus.io/php/exp/
  // original by: Onno Marsman (https://twitter.com/onnomarsman)
  //   example 1: exp(0.3)
  //   returns 1: 1.3498588075760032

  return Math.exp(arg);
};
//# sourceMappingURL=exp.js.map