Added tests for new date snippets

This commit is contained in:
Angelos Chalaris
2018-09-29 14:29:56 +03:00
parent e8d4ad78d9
commit 29bd1d0a3c
20 changed files with 96 additions and 10 deletions

View File

@@ -1,2 +1,2 @@
const radsToDegrees = rad => (rad * 180.0) / Math.PI;
const radsToDegrees = rad => rad * 180.0 / Math.PI;
module.exports = radsToDegrees;