Skip to content

Commit

Permalink
Scaffold: Normalize code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
phated committed Dec 10, 2018
1 parent fdf7158 commit 2bb755d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Expand Up @@ -11,7 +11,7 @@ var levels = [
'error'
];

function getLogger(namespace){
function getLogger(namespace) {
var logger = sparkles(namespace);

levels.forEach(function(level){
Expand All @@ -21,9 +21,9 @@ function getLogger(namespace){
return logger;
}

function makeLogLevel(level){
function makeLogLevel(level) {
return function(msg){
if(typeof msg === 'string'){
if (typeof msg === 'string') {
msg = format.apply(null, arguments);
}

Expand Down

0 comments on commit 2bb755d

Please sign in to comment.