From 24184a5a6a065455edb56fc8ee4d5fbaab1bc8db Mon Sep 17 00:00:00 2001 From: Ibby Hadeed Date: Wed, 23 Nov 2016 08:23:55 -0500 Subject: [PATCH] chore(): tslint --- src/plugins/file.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/file.ts b/src/plugins/file.ts index 44f58b5f..4513ba2b 100644 --- a/src/plugins/file.ts +++ b/src/plugins/file.ts @@ -689,7 +689,7 @@ export class File { }) .then((fe) => { return File.writeFileEntry(fe, text, options); - }) + }); } /** Write content to FileEntry. @@ -700,7 +700,7 @@ export class File { * @param {WriteOptions} options replace file if set to true. See WriteOptions for more information. * @returns {Promise} 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) { @@ -725,7 +725,7 @@ export class File { * @returns {Promise} Returns a Promise that resolves or rejects with an error. */ static writeExistingFile(path: string, fileName: string, text: string | Blob): Promise { - return File.writeFile(path, fileName, text, { create: false }) + return File.writeFile(path, fileName, text, { create: false }); } /**