diff options
Diffstat (limited to 'src/webpack/webpack.ts')
-rw-r--r-- | src/webpack/webpack.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/webpack/webpack.ts b/src/webpack/webpack.ts index df32132..1231d9e 100644 --- a/src/webpack/webpack.ts +++ b/src/webpack/webpack.ts @@ -139,11 +139,11 @@ export function findAll(filter: FilterFn, getDefault = true) { /** * Same as {@link find} but in bulk - * @param filterFns Arry of filters. Please note that this array will be modified in place, so if you still + * @param filterFns Array of filters. Please note that this array will be modified in place, so if you still * need it afterwards, pass a copy. * @returns Array of results in the same order as the passed filters */ -export function bulk(...filterFns: FilterFn[]) { +export const findBulk = traceFunction("findBulk", function findBulk(...filterFns: FilterFn[]) { if (!Array.isArray(filterFns)) throw new Error("Invalid filters. Expected function[] got " + typeof filterFns); @@ -216,7 +216,7 @@ export function bulk(...filterFns: FilterFn[]) { } return results; -} +}); /** * Find the id of a module by its code |