mirror of
https://github.com/S2-/minifyfromhtml.git
synced 2025-08-04 04:40:05 +02:00
update node modules
This commit is contained in:
10
node_modules/clean-css/lib/options/rebase.js
generated
vendored
10
node_modules/clean-css/lib/options/rebase.js
generated
vendored
@@ -1,5 +1,11 @@
|
||||
function rebaseFrom(rebaseOption) {
|
||||
return undefined === rebaseOption ? true : !!rebaseOption;
|
||||
function rebaseFrom(rebaseOption, rebaseToOption) {
|
||||
if (undefined !== rebaseToOption) {
|
||||
return true;
|
||||
} else if (undefined === rebaseOption) {
|
||||
return false;
|
||||
} else {
|
||||
return !!rebaseOption;
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = rebaseFrom;
|
||||
|
Reference in New Issue
Block a user