Skip to content

Commit

Permalink
refactor: restore Object.assign
Browse files Browse the repository at this point in the history
  • Loading branch information
ajuste committed May 18, 2017
1 parent 9c14a45 commit c86d951
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions src/index.coffee
Original file line number Diff line number Diff line change
@@ -1,15 +1,7 @@
{
Manager
ReadResult
} = require './filesystem-manager'
{
FsClient
} = require './filesystem-fs'
{
S3Bucket
} = require './filesystem-s3'
{
GoogleStorageClient
} = require './filesystem-google-storage'

module.exports = {Manager, ReadResult, FsClient, S3Bucket, GoogleStorageClient}
module.exports = Object.assign(
{}
require './filesystem-manager'
require './filesystem-fs'
require './filesystem-s3'
require './filesystem-google-storage'
)

0 comments on commit c86d951

Please sign in to comment.