HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/ehbo.today/node_modules/postcss-merge-longhand/dist/lib/canMerge.js
'use strict';

Object.defineProperty(exports, '__esModule', {
    value: true
});
var important = function important(node) {
    return node.important;
};
var unimportant = function unimportant(node) {
    return !node.important;
};
var hasInherit = function hasInherit(node) {
    return ~node.value.indexOf('inherit');
};
var hasInitial = function hasInitial(node) {
    return ~node.value.indexOf('initial');
};

exports['default'] = function () {
    for (var _len = arguments.length, props = Array(_len), _key = 0; _key < _len; _key++) {
        props[_key] = arguments[_key];
    }

    if (props.some(hasInherit) || props.some(hasInitial)) {
        return false;
    }
    return props.every(important) || props.every(unimportant);
};

module.exports = exports['default'];