signal-desktop/js/modules
Daniel Gasienica 43b47fd349 Avoid ensure-error for privacy reasons
Example:

```
> node
> const nonError = {foo: 'i-am-private'};
undefined

// before
> util.inspect(nonError);
'{ foo: \'i-am-private\' }'

// after
> nonError.toString()
'[object Object]'
>
```
2018-03-08 16:23:51 -05:00
..
types Avoid ensure-error for privacy reasons 2018-03-08 16:23:51 -05:00
.eslintrc Auto-fixes: UX Improvements (#2077) 2018-03-02 15:54:15 -05:00
auto_orient_image.js Auto-orient image attachments based on EXIF metadata 2018-02-21 10:28:13 -05:00
debuglogs.js Document workaround for got FormData bug 2018-03-08 16:21:27 -05:00
global_errors.js Rename Errors to GlobalErrors for clarity 2018-03-08 16:22:38 -05:00
os.js Add OS module 2018-03-05 10:29:11 -05:00
privacy.js Escape special characters in file path 2018-03-08 16:23:51 -05:00