We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3292934 commit b65c659Copy full SHA for b65c659
lib/dev-pages-utils/permutations.js
@@ -1,6 +1,6 @@
1
// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
2
// SPDX-License-Identifier: Apache-2.0
3
-import flatten from "lodash/flatten";
+import flatten from "lodash/flatten.js";
4
export function createPermutations(permutations) {
5
return flatten(permutations.map(set => doCreatePermutations(set)));
6
}
src/dev-pages-utils/permutations.tsx
export type ComponentPermutations<Props> = {
[prop in keyof Props]: ReadonlyArray<Props[prop]>;
0 commit comments