Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit d7fde5f

Browse files
Davidpkozlowski-opensource
David
authored andcommitted
style(ngMock): add missing whitespace
1 parent b53c945 commit d7fde5f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ngMock/angular-mocks.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ angular.mock = {};
2929
* that there are several helper methods available which can be used in tests.
3030
*/
3131
angular.mock.$BrowserProvider = function() {
32-
this.$get = function(){
32+
this.$get = function() {
3333
return new angular.mock.$Browser();
3434
};
3535
};
@@ -412,7 +412,7 @@ angular.mock.$LogProvider = function() {
412412
(function() {
413413
var R_ISO8061_STR = /^(\d{4})-?(\d\d)-?(\d\d)(?:T(\d\d)(?:\:?(\d\d)(?:\:?(\d\d)(?:\.(\d{3}))?)?)?(Z|([+-])(\d\d):?(\d\d)))?$/;
414414

415-
function jsonStringToDate(string){
415+
function jsonStringToDate(string) {
416416
var match;
417417
if (match = string.match(R_ISO8061_STR)) {
418418
var date = new Date(0),

0 commit comments

Comments
 (0)