mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-10 03:52:57 +00:00
10 lines
331 B
JavaScript
10 lines
331 B
JavaScript
// Check whether a property is a CSS property
|
|
const isCustomProperty = require('./isCustomProperty');
|
|
const isStandardSyntaxProperty = require('./isStandardSyntaxProperty');
|
|
|
|
module.exports = function isProperty(node) {
|
|
return (
|
|
node.type === 'decl' && isStandardSyntaxProperty(node.prop) && !isCustomProperty(node.prop)
|
|
);
|
|
};
|