UNPKG

style-dictionary-utils

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