Skip to content

Commit b97b8db

Browse files
author
Cédric Belin
committed
Code formatting
1 parent 0b69cd8 commit b97b8db

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/index.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
const bundle = require("./bundle.js");
2-
exports.phpMinify = bundle.phpMinify;
1+
const {phpMinify} = require("./bundle.js");
2+
exports.phpMinify = phpMinify;

lib/index.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
import bundle from "./bundle.js";
2-
export const phpMinify = bundle.phpMinify;
2+
export const {phpMinify} = bundle;

0 commit comments

Comments
 (0)