Hi there, I am working on a loader that needs to compile an array of loaders and options into one string. I've noticed that `vue-loader` authors have implemented similar functionality in their code base: [vue-loader/lib/loader.js](https://github.com/vuejs/vue-loader/blob/0cb6d4d76db6a638bc10184828ed6c463458fe0a/lib/loader.js#L456). I am wondering if this is something that could be part of `loader-utils` since it could be a helpful function for other loaders as well? I can create a PR with tests if there will be a need for this helper function.
Hi there,
I am working on a loader that needs to compile an array of loaders and options into one string.
I've noticed that
vue-loaderauthors have implemented similar functionality in their code base: vue-loader/lib/loader.js.I am wondering if this is something that could be part of
loader-utilssince it could be a helpful function for other loaders as well?I can create a PR with tests if there will be a need for this helper function.