UNPKG

@wordpress/block-editor

Version:
13 lines (11 loc) 260 B
/** * Internal dependencies */ import { cleanEmptyObject } from '../utils'; describe( 'cleanEmptyObject', () => { it( 'should remove nested keys', () => { expect( cleanEmptyObject( { color: { text: undefined } } ) ).toEqual( undefined ); } ); } );