I need to get customer status in JS component - authenticated or anonymous. Could I get it using Magento_Customer/js/customer-data and how?
define([
'Magento_Customer/js/customer-data'
], function (customerData) {
let isAnon = customerData.???
});