blob: 80f30b153b764b559fcb636f2ed5fe6f6adff31e [file] [log] [blame]
(function () {
"use strict";
angular.module('cordGui')
.service('Helpers', function(){
this.randomDate = function(start, end) {
return new Date(
start.getTime() + Math.random() * (end.getTime() - start.getTime())
);
}
});
}());