(function () { 'use strict'; angular.module('streamApp').filter("myTime", function () { return function (value) { return value < 10 ? '0' + value : value.toString(); }; }) })();