From 090514fc1b3806e4ffaf1523b246724258e41114 Mon Sep 17 00:00:00 2001 From: sthag Date: Sun, 2 Nov 2025 14:45:17 +0100 Subject: [PATCH] feat: Change structure to IIFE For now use it as a standalone JavaScript plugin. --- index.js | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) 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: '|-| | |^ |^ | [- ' + } + }; +})();