diff options
Diffstat (limited to 'scripts/utils.js')
-rw-r--r-- | scripts/utils.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/utils.js b/scripts/utils.js new file mode 100644 index 00000000..86ea64aa --- /dev/null +++ b/scripts/utils.js @@ -0,0 +1,14 @@ +export const asyncForEach = async (array, callback) => { + for (let index = 0; index < array.length; index++) { + await callback(array[index], index, array) + } +} + + +export const camelize = function (str) { + str = str.replace(/-/g, ' ') + + return str.replace(/(?:^\w|[A-Z]|\b\w)/g, function (word, index) { + return word.toUpperCase() + }).replace(/\s+/g, '') +} |