Skip to content

Commit

Permalink
remove duplicate exports (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Nov 27, 2016
1 parent 5138b0f commit 2054eee
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/sander.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import { asyncFileDescriptorMethod } from './methodMakers/fileDescriptorMethod';
// standard async methods
export const chmod = asyncMethod( 'chmod' );
export const chown = asyncMethod( 'chown' );
export const createReadStream = asyncMethod( 'createReadStream' );
export const createWriteStream = asyncMethod( 'createWriteStream' );
export const lchmod = asyncMethod( 'lchmod' );
export const lchown = asyncMethod( 'lchown' );
export const lstat = asyncMethod( 'lstat' );
Expand Down Expand Up @@ -78,4 +76,4 @@ export { symlinkOrCopy, symlinkOrCopySync } from './extraMethods/symlinkOrCopy';

// expose Promise for convenience
// https://github.com/esperantojs/esperanto/issues/161
export const Promise = es6Promise.Promise;
export const Promise = es6Promise.Promise;

0 comments on commit 2054eee

Please sign in to comment.