add jsdoc linting, address issues
[squeep-mystery-box] / index.js
1 'use strict';
2
3 const MysteryBox = require('./lib/mystery-box');
4 const { MysteryBoxError } = require('./lib/errors');
5
6 module.exports = {
7 MysteryBox,
8 MysteryBoxError,
9 };