UNPKG

@bolt/build-tools

Version:

Curated collection of front-end build tools in the Bolt Design System.

17 lines (12 loc) 359 B
'use strict'; function getCurrentRequest(loaderContext) { if (loaderContext.currentRequest) { return loaderContext.currentRequest; } const request = loaderContext.loaders .slice(loaderContext.loaderIndex) .map((obj) => obj.request) .concat([loaderContext.resource]); return request.join('!'); } module.exports = getCurrentRequest;