Skip to content

Commit fe28b4d

Browse files
committed
Add export example
1 parent c6510de commit fe28b4d

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

JavaScript/1-export.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
'use strict';
2+
3+
class Entity {}
4+
5+
const fn = x => x;
6+
7+
const collection = new Map();
8+
9+
module.exports = { Entity, fn, collection };

0 commit comments

Comments
 (0)