frontend/.pnpm-store/v3/files/c9/2845940c3ee8a74274bc858282ec005a924909ce77dff38d2038e4fc6960050337a2f8bb82d93489182c3b18bc5f2337c11457d54c9b63f8e39b49aafe74fb

11 lines
204 B
Plaintext

function hasInherit(property) {
for (var i = property.value.length - 1; i >= 0; i--) {
if (property.value[i][1] == 'inherit')
return true;
}
return false;
}
module.exports = hasInherit;