mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 04:40:05 +02:00
5 lines
181 B
JavaScript
5 lines
181 B
JavaScript
require('child_process').exec('dir-bin', { stdio: 'pipe',
|
|
env: process.env }, function (err) {
|
|
if (err && err.code) throw new Error('exited badly with code = ' + err.code)
|
|
})
|