summaryrefslogtreecommitdiff
path: root/lib/config/utils.js
diff options
context:
space:
mode:
authorChristoph (Sheogorath) Kern2018-03-17 21:32:03 +0100
committerGitHub2018-03-17 21:32:03 +0100
commite2b8b925304a35bd1514a27def56ac5d521a7051 (patch)
tree0d78b6495172edd96d204e5f1c47510ad3a23d4e /lib/config/utils.js
parent9cbe03d8a8eb503170b7b481e97c37d66447dd37 (diff)
parentd682695bf1b8e456af2687b9afe61ce69fdff9b7 (diff)
Merge pull request #769 from SISheogorath/fix/minioInteger
Add helper function to fix number problems
Diffstat (limited to 'lib/config/utils.js')
-rw-r--r--lib/config/utils.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/config/utils.js b/lib/config/utils.js
index 9ff2f96d..b2406cf1 100644
--- a/lib/config/utils.js
+++ b/lib/config/utils.js
@@ -13,3 +13,10 @@ exports.toArrayConfig = function toArrayConfig (configValue, separator = ',', fa
}
return fallback
}
+
+exports.toIntegerConfig = function toIntegerConfig (configValue) {
+ if (configValue && typeof configValue === 'string') {
+ return parseInt(configValue)
+ }
+ return configValue
+}