Skip to content

Commit 278c203

Browse files
committed
Fix bug where color palette could not be empty
1 parent 869d68d commit 278c203

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

__tests__/flattenColorPalette.test.js

+4
Original file line numberDiff line numberDiff line change
@@ -75,3 +75,7 @@ test('it flattens deeply nested color objects', () => {
7575
'button-primary-focus-variant': 'orange',
7676
})
7777
})
78+
79+
test('it handles empty objects', () => {
80+
expect(flattenColorPalette({})).toEqual({})
81+
})

src/util/flattenColorPalette.js

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
const flattenColorPalette = (colors) =>
22
Object.assign(
3+
{},
34
...Object.entries(colors).flatMap(([color, values]) =>
45
typeof values == 'object'
56
? Object.entries(flattenColorPalette(values)).map(([number, hex]) => ({

0 commit comments

Comments
 (0)