GPS cartridge

This commit is contained in:
atermonera
2018-07-24 18:58:06 -07:00
committed by Atermonera
parent da45a40fad
commit 96d24e7427
6 changed files with 249 additions and 112 deletions

View File

@@ -60,6 +60,9 @@ NanoBaseHelpers = function ()
ceil: function(number) {
return Math.ceil(number);
},
abs: function(number) {
return Math.abs(number);
},
// Format a string (~string("Hello {0}, how are {1}?", 'Martin', 'you') becomes "Hello Martin, how are you?")
string: function() {
if (arguments.length == 0)