diff options
Diffstat (limited to 'node_modules/tailwindcss/src/util/hashConfig.js')
| -rw-r--r-- | node_modules/tailwindcss/src/util/hashConfig.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/node_modules/tailwindcss/src/util/hashConfig.js b/node_modules/tailwindcss/src/util/hashConfig.js new file mode 100644 index 0000000..543e020 --- /dev/null +++ b/node_modules/tailwindcss/src/util/hashConfig.js @@ -0,0 +1,5 @@ +import hash from 'object-hash' + +export default function hashConfig(config) { + return hash(config, { ignoreUnknown: true }) +} |