Skip to content

Commit

Permalink
chore(all): formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Aug 14, 2015
1 parent 1da6736 commit a823d83
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ function trimDots(ary: string[]) {
}
}

export function relativeToFile(name:string, file:string):string{
export function relativeToFile(name : string, file : string) : string {
var lastIndex,
normalizedBaseParts,
fileParts = (file && file.split('/')),
Expand All @@ -42,7 +42,7 @@ export function relativeToFile(name:string, file:string):string{
return nameParts.join('/');
}

export function join(path1:string, path2:string):string {
export function join(path1 : string, path2 : string) : string {
var url1, url2, url3, i, ii, urlPrefix, trailingSlash;

if(!path1){
Expand Down Expand Up @@ -103,7 +103,7 @@ function type( obj ){
: typeof obj;
}

export function buildQueryString(a:Object, traditional?:boolean):string {
export function buildQueryString(a : Object, traditional? : boolean) : string {
var s = [],
add = function(key:string, value:any) {
// If value is a function, invoke it and return its value
Expand Down

0 comments on commit a823d83

Please sign in to comment.