style-dictionary-utils
Version:
Utilities to use in your style dictionary config
7 lines (6 loc) • 299 B
JavaScript
/**
* @name isFontWeight
* @type filter
* @description only returns tokens of type `fontWeight`
*/
export const isFontWeight = (token) => (token === null || token === void 0 ? void 0 : token.$type) === 'fontWeight' || (token === null || token === void 0 ? void 0 : token.type) === 'fontWeight';