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

module.exports = function pi() {
  //  discuss at: http://locutus.io/php/pi/
  // original by: Onno Marsman (https://twitter.com/onnomarsman)
  // improved by: dude
  //   example 1: pi(8723321.4)
  //   returns 1: 3.141592653589793

  return 3.141592653589793; // Math.PI
};
//# sourceMappingURL=pi.js.map