Skip to content

Commit

Permalink
Code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Oct 26, 2024
1 parent 0b69cd8 commit b97b8db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/index.cjs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
const bundle = require("./bundle.js");
exports.phpMinify = bundle.phpMinify;
const {phpMinify} = require("./bundle.js");
exports.phpMinify = phpMinify;
2 changes: 1 addition & 1 deletion lib/index.mjs
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
import bundle from "./bundle.js";
export const phpMinify = bundle.phpMinify;
export const {phpMinify} = bundle;

0 comments on commit b97b8db

Please sign in to comment.