UNPKG

style-dictionary-utils

Version:
7 lines (6 loc) 279 B
/** * @name isShadow * @type filter * @description only returns tokens of type `shadow` */ export const isShadow = (token) => (token === null || token === void 0 ? void 0 : token.$type) === 'shadow' || (token === null || token === void 0 ? void 0 : token.type) === 'shadow';