UNPKG

@cedx/php-minifier

Version:

Minify PHP source code by removing comments and whitespace.

13 lines (12 loc) 351 B
import { GulpPlugin } from "./GulpPlugin.js"; export * from "./FastTransformer.js"; export * from "./GulpPlugin.js"; export * from "./SafeTransformer.js"; /** * Creates a new Gulp plugin. * @param options The plugin options. * @returns The newly created instance. */ export function phpMinify(options = {}) { return new GulpPlugin(options); }