semblance/node_modules/tailwindcss/src/util/hashConfig.js
2025-08-04 09:07:59 -05:00

5 lines
126 B
JavaScript

import hash from 'object-hash'
export default function hashConfig(config) {
return hash(config, { ignoreUnknown: true })
}