summaryrefslogtreecommitdiff
path: root/node_modules/locutus/ruby/Math
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/locutus/ruby/Math')
-rw-r--r--node_modules/locutus/ruby/Math/acos.js13
-rw-r--r--node_modules/locutus/ruby/Math/acos.js.map1
-rw-r--r--node_modules/locutus/ruby/Math/index.js4
-rw-r--r--node_modules/locutus/ruby/Math/index.js.map1
4 files changed, 19 insertions, 0 deletions
diff --git a/node_modules/locutus/ruby/Math/acos.js b/node_modules/locutus/ruby/Math/acos.js
new file mode 100644
index 0000000..4073b01
--- /dev/null
+++ b/node_modules/locutus/ruby/Math/acos.js
@@ -0,0 +1,13 @@
+"use strict";
+
+module.exports = function acos(arg) {
+ // discuss at: http://locutus.io/ruby/Math/acos/
+ // original by: Onno Marsman (https://twitter.com/onnomarsman)
+ // note 1: Sorry about the crippled test.
+ // note 1: Needed because precision differs accross platforms.
+ // example 1: (acos(0.3) + '').substr(0, 17)
+ // returns 1: '1.266103672779499'
+
+ return Math.acos(arg);
+};
+//# sourceMappingURL=acos.js.map \ No newline at end of file
diff --git a/node_modules/locutus/ruby/Math/acos.js.map b/node_modules/locutus/ruby/Math/acos.js.map
new file mode 100644
index 0000000..4558546
--- /dev/null
+++ b/node_modules/locutus/ruby/Math/acos.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/ruby/Math/acos.js"],"names":["module","exports","acos","arg","Math"],"mappings":";;AAAAA,OAAOC,OAAP,GAAiB,SAASC,IAAT,CAAeC,GAAf,EAAoB;AACnC;AACA;AACA;AACA;AACA;AACA;;AAEA,SAAOC,KAAKF,IAAL,CAAUC,GAAV,CAAP;AACD,CATD","file":"acos.js","sourcesContent":["module.exports = function acos (arg) {\n // discuss at: http://locutus.io/ruby/Math/acos/\n // original by: Onno Marsman (https://twitter.com/onnomarsman)\n // note 1: Sorry about the crippled test.\n // note 1: Needed because precision differs accross platforms.\n // example 1: (acos(0.3) + '').substr(0, 17)\n // returns 1: '1.266103672779499'\n\n return Math.acos(arg)\n}\n"]} \ No newline at end of file
diff --git a/node_modules/locutus/ruby/Math/index.js b/node_modules/locutus/ruby/Math/index.js
new file mode 100644
index 0000000..2e3ef80
--- /dev/null
+++ b/node_modules/locutus/ruby/Math/index.js
@@ -0,0 +1,4 @@
+'use strict';
+
+module.exports['acos'] = require('./acos');
+//# sourceMappingURL=index.js.map \ No newline at end of file
diff --git a/node_modules/locutus/ruby/Math/index.js.map b/node_modules/locutus/ruby/Math/index.js.map
new file mode 100644
index 0000000..c856295
--- /dev/null
+++ b/node_modules/locutus/ruby/Math/index.js.map
@@ -0,0 +1 @@
+{"version":3,"sources":["../../../src/ruby/Math/index.js"],"names":["module","exports","require"],"mappings":";;AAAAA,OAAOC,OAAP,CAAe,MAAf,IAAyBC,QAAQ,QAAR,CAAzB","file":"index.js","sourcesContent":["module.exports['acos'] = require('./acos')\n"]} \ No newline at end of file