blob: 80f30b153b764b559fcb636f2ed5fe6f6adff31e [file] [log] [blame]
Matteo Scandolo680cd922016-01-26 17:21:39 -08001(function () {
2 "use strict";
3
4 angular.module('cordGui')
5 .service('Helpers', function(){
6 this.randomDate = function(start, end) {
7 return new Date(
8 start.getTime() + Math.random() * (end.getTime() - start.getTime())
9 );
10 }
11 });
12
13}());