checksum -> engineChecksum for clarity

This commit is contained in:
Henry Jameson 2024-04-24 15:09:52 +03:00
commit 6ea69eb51a
2 changed files with 7 additions and 7 deletions

View file

@ -143,11 +143,11 @@ componentsContext.keys().forEach(key => {
components[component.name] = component
})
const checksum = sum(components)
const engineChecksum = sum(components)
const ruleToSelector = genericRuleToSelector(components)
export const getChecksum = () => checksum
export const getEngineChecksum = () => engineChecksum
export const init = (extraRuleset, ultimateBackgroundColor) => {
const staticVars = {}
@ -469,6 +469,6 @@ export const init = (extraRuleset, ultimateBackgroundColor) => {
lazy: result.filter(x => typeof x === 'function'),
eager: result.filter(x => typeof x !== 'function'),
staticVars,
checksum
engineChecksum
}
}