UNPKG

attributes-kit

Version:
12 lines (9 loc) 191 B
/* * Preprocessor utility functions. */ export function setCache(refract, name, value) { if (refract.cache === undefined) { refract.cache = {}; } refract.cache[name] = value; }