You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
768 B
25 lines
768 B
4 years ago
|
"use strict";
|
||
|
|
||
|
Object.defineProperty(exports, "__esModule", {
|
||
|
value: true
|
||
|
});
|
||
|
|
||
|
var _isCustomProp = require("./isCustomProp");
|
||
|
|
||
|
var _isCustomProp2 = _interopRequireDefault(_isCustomProp);
|
||
|
|
||
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||
|
|
||
|
const hasInherit = node => node.value.toLowerCase().includes("inherit");
|
||
|
const hasInitial = node => node.value.toLowerCase().includes("initial");
|
||
|
const hasUnset = node => node.value.toLowerCase().includes("unset");
|
||
|
|
||
|
exports.default = (prop, includeCustomProps = true) => {
|
||
|
if (includeCustomProps && (0, _isCustomProp2.default)(prop)) {
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
return !hasInherit(prop) && !hasInitial(prop) && !hasUnset(prop);
|
||
|
};
|
||
|
|
||
|
module.exports = exports["default"];
|