8 lines
151 B
Plaintext
8 lines
151 B
Plaintext
![]() |
function isIconMode(actions) {
|
||
|
return actions.some(function (action) {
|
||
|
return !!action.icon;
|
||
|
});
|
||
|
}
|
||
|
export default {
|
||
|
isIconMode: isIconMode
|
||
|
};
|