From b97b8db64c7a0b4171e92c8b391588366362c3f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Belin?= Date: Sat, 26 Oct 2024 11:15:27 +0200 Subject: [PATCH] Code formatting --- lib/index.cjs | 4 ++-- lib/index.mjs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/index.cjs b/lib/index.cjs index ca123f8..16ae45f 100644 --- a/lib/index.cjs +++ b/lib/index.cjs @@ -1,2 +1,2 @@ -const bundle = require("./bundle.js"); -exports.phpMinify = bundle.phpMinify; +const {phpMinify} = require("./bundle.js"); +exports.phpMinify = phpMinify; diff --git a/lib/index.mjs b/lib/index.mjs index 2141f47..f7573b2 100644 --- a/lib/index.mjs +++ b/lib/index.mjs @@ -1,2 +1,2 @@ import bundle from "./bundle.js"; -export const phpMinify = bundle.phpMinify; +export const {phpMinify} = bundle;