This PR addresses #8, and ensures that S3Client.listObjects calls go through successfully.
Because previously the optional prefix parameter would hold undefined instead of an empty string when not set, it would end up causing the list object to call to request objects with the undefined prefix, which, of course, would return an empty Array.
This PR addresses #8, and ensures that
S3Client.listObjects
calls go through successfully.Because previously the optional
prefix
parameter would holdundefined
instead of an empty string when not set, it would end up causing the list object to call to request objects with theundefined
prefix, which, of course, would return an empty Array.closes #8