Skip to content

Commit 5b12df7

Browse files
author
pemrouz
committed
feat: use module.exports to avoid .default
1 parent 796d55d commit 5b12df7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ import client from 'utilise/client'
1919

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

22-
export default function create(opts){
22+
module.exports = create
23+
24+
function create(opts){
2325
var ripple = core() // empty base collection of resources
2426

2527
// enrich..

0 commit comments

Comments
 (0)