mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-02 20:00:05 +02:00
82 lines
2.0 KiB
JavaScript
82 lines
2.0 KiB
JavaScript
"use strict";
|
|
|
|
const DELIMITTER = ".";
|
|
|
|
module.exports = function parseOpts(argv) {
|
|
return dotsToObject(argv);
|
|
};
|
|
/**
|
|
* Converts and Object of the form - {key<dot-notation>: value} to deep object
|
|
* following rules of minify preset options
|
|
*
|
|
* A preset option can be `true` | `object` which enables the particular plugin
|
|
* `false` disables the plugin
|
|
*
|
|
* @param input - An Object with dot-notation keys
|
|
*/
|
|
|
|
|
|
function dotsToObject(input) {
|
|
const dots = Object.keys(input).map(key => [...key.split(DELIMITTER), input[key]]); // sort to ensure dot notation occurs after parent key
|
|
|
|
dots.sort((a, b) => {
|
|
if (a.length === b.length) {
|
|
return a[0] > b[0];
|
|
}
|
|
|
|
return a.length > b.length;
|
|
});
|
|
const obj = {};
|
|
var _iteratorNormalCompletion = true;
|
|
var _didIteratorError = false;
|
|
var _iteratorError = undefined;
|
|
|
|
try {
|
|
for (var _iterator = dots[Symbol.iterator](), _step; !(_iteratorNormalCompletion = (_step = _iterator.next()).done); _iteratorNormalCompletion = true) {
|
|
const parts = _step.value;
|
|
add(obj, ...parts);
|
|
} // make object
|
|
|
|
} catch (err) {
|
|
_didIteratorError = true;
|
|
_iteratorError = err;
|
|
} finally {
|
|
try {
|
|
if (!_iteratorNormalCompletion && _iterator.return != null) {
|
|
_iterator.return();
|
|
}
|
|
} finally {
|
|
if (_didIteratorError) {
|
|
throw _iteratorError;
|
|
}
|
|
}
|
|
}
|
|
|
|
function add(o, first, ...rest) {
|
|
if (rest.length < 1) {
|
|
// something went wrong
|
|
throw new Error("Option Parse Error");
|
|
} else if (rest.length === 1) {
|
|
// there is only a key and a value
|
|
// for example: mangle: true
|
|
o[first] = rest[0];
|
|
} else {
|
|
// create the current path and recurse if the plugin is enabled
|
|
if (!hop(o, first) || o[first] === true) {
|
|
// if the plugin is enabled
|
|
o[first] = {};
|
|
}
|
|
|
|
if (o[first] !== false) {
|
|
// if the plugin is NOT disabled then recurse
|
|
add(o[first], ...rest);
|
|
}
|
|
}
|
|
}
|
|
|
|
return obj;
|
|
}
|
|
|
|
function hop(o, key) {
|
|
return Object.prototype.hasOwnProperty.call(o, key);
|
|
} |