Skip to content

Commit

Permalink
chore(): tslint
Browse files Browse the repository at this point in the history
  • Loading branch information
ihadeed committed Nov 23, 2016
1 parent 0b39ff8 commit 24184a5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plugins/file.ts
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ export class File {
})
.then((fe) => {
return File.writeFileEntry(fe, text, options);
})
});
}

/** Write content to FileEntry.
Expand All @@ -700,7 +700,7 @@ export class File {
* @param {WriteOptions} options replace file if set to true. See WriteOptions for more information.
* @returns {Promise<FileEntry>} Returns a Promise that resolves to updated file entry or rejects with an error.
*/
private static writeFileEntry(fe: FileEntry, text: string | Blob, options : WriteOptions) {
private static writeFileEntry(fe: FileEntry, text: string | Blob, options: WriteOptions) {
return File.createWriter(fe)
.then((writer) => {
if (options.append) {
Expand All @@ -725,7 +725,7 @@ export class File {
* @returns {Promise<void>} Returns a Promise that resolves or rejects with an error.
*/
static writeExistingFile(path: string, fileName: string, text: string | Blob): Promise<void> {
return File.writeFile(path, fileName, text, { create: false })
return File.writeFile(path, fileName, text, { create: false });
}

/**
Expand Down

0 comments on commit 24184a5

Please sign in to comment.