We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b69cd8 commit b97b8dbCopy full SHA for b97b8db
lib/index.cjs
@@ -1,2 +1,2 @@
1
-const bundle = require("./bundle.js");
2
-exports.phpMinify = bundle.phpMinify;
+const {phpMinify} = require("./bundle.js");
+exports.phpMinify = phpMinify;
lib/index.mjs
import bundle from "./bundle.js";
-export const phpMinify = bundle.phpMinify;
+export const {phpMinify} = bundle;
0 commit comments