0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-29 08:58:01 -04:00
This commit is contained in:
Bert Belder 2018-09-17 20:58:54 -07:00
parent 419a814f35
commit 7553bcb74f
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -72,7 +72,7 @@ class FileInfoImpl implements FileInfo {
const created = this._msg.created().toFloat64();
const hasMode = this._msg.hasMode();
const mode = this._msg.mode(); // negative for invalid mode (Windows)
this._isFile = this._msg.isFile();
this._isSymlink = this._msg.isSymlink();
this.len = this._msg.len().toFloat64();