summaryrefslogtreecommitdiff
path: root/node_modules/tailwindcss/src/util/hashConfig.js
blob: 543e0205d940d404bd1357a16a5a761f160e4a72 (plain) (blame)
1
2
3
4
5
import hash from 'object-hash'

export default function hashConfig(config) {
  return hash(config, { ignoreUnknown: true })
}