Skip to content

Commit

Permalink
feat: use module.exports to avoid .default
Browse files Browse the repository at this point in the history
  • Loading branch information
pemrouz committed Dec 16, 2016
1 parent 796d55d commit 5b12df7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ import client from 'utilise/client'

client && !window.ripple && create()

export default function create(opts){
module.exports = create

function create(opts){
var ripple = core() // empty base collection of resources

// enrich..
Expand Down

0 comments on commit 5b12df7

Please sign in to comment.