diff --git a/index.js b/index.js index 021ec24..68ac0fd 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,9 @@ -module.exports = { - hippie: { - brand: "|-| | |^ |^ | [- " - } -} \ No newline at end of file +const HIPPIE = (function () { + 'use strict'; + + return { + hippie: { + brand: '|-| | |^ |^ | [- ' + } + }; +})();