mirror of
https://github.com/morhetz/gruvbox.git
synced 2025-11-18 00:03:38 -05:00
chore(package): re-init package with commitizen and standard-release
This commit is contained in:
15
node_modules/rechoir/lib/normalize.js
generated
vendored
Normal file
15
node_modules/rechoir/lib/normalize.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
function normalizer (config) {
|
||||
if (typeof config === 'string') {
|
||||
return {
|
||||
module: config
|
||||
}
|
||||
}
|
||||
return config;
|
||||
};
|
||||
|
||||
module.exports = function (config) {
|
||||
if (Array.isArray(config)) {
|
||||
return config.map(normalizer);
|
||||
}
|
||||
return normalizer(config);
|
||||
};
|
||||
Reference in New Issue
Block a user