Skip to content

Commit

Permalink
♻️ refactor: Use ESM import syntax and add linter hint.
Browse files Browse the repository at this point in the history
  • Loading branch information
make-github-pseudonymous-again committed Mar 18, 2021
1 parent e671fcf commit 1707a26
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
import fromkeys from './fromkeys' ;
import object from './object' ;
import reflect from './reflect' ;
import fromkeys from './fromkeys.js';
import object from './object.js';
import reflect from './reflect.js';

/* eslint import/no-anonymous-default-export: [2, {"allowObject": true}] */
export default {
fromkeys ,
object ,
reflect ,
} ;
fromkeys,
object,
reflect,
};

export {
fromkeys ,
object ,
reflect ,
} ;
fromkeys,
object,
reflect,
};

0 comments on commit 1707a26

Please sign in to comment.