fix example

This commit is contained in:
Luis Blanco 2018-03-05 21:39:16 +03:00
parent 4e2728c8bc
commit 448c524af7
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
'use strict';
const Example = require('./core');
const { Example } = require('./core');
console.log('Example', Example);
@ -43,4 +43,4 @@ example.emit('evt2', 111, '221');
example.emit('evt2', 112, '222');
module.exports = { Wrapped, Example };
module.exports = Example;