From 0ec629d10555ad617f3ebbafcb3276a9d96a8a86 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Thu, 30 Aug 2018 13:54:56 -0400 Subject: format --- js/fetch_types.d.ts | 2 +- js/os.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'js') diff --git a/js/fetch_types.d.ts b/js/fetch_types.d.ts index ebe2c70be..4f77b5bd1 100644 --- a/js/fetch_types.d.ts +++ b/js/fetch_types.d.ts @@ -145,7 +145,7 @@ interface File extends Blob { declare var File: { prototype: File; - new(fileBits: BlobPart[], fileName: string, options?: FilePropertyBag): File; + new (fileBits: BlobPart[], fileName: string, options?: FilePropertyBag): File; }; interface FilePropertyBag extends BlobPropertyBag { diff --git a/js/os.ts b/js/os.ts index f0f8897cc..46385c493 100644 --- a/js/os.ts +++ b/js/os.ts @@ -187,7 +187,7 @@ export class FileInfo { this.len = this._msg.len().toFloat64(); this.modified = this._msg.modified().toFloat64(); this.accessed = this._msg.accessed().toFloat64(); - this.created = created ? created: null; + this.created = created ? created : null; } isFile() { -- cgit v1.2.3