mirror of https://github.com/sveltejs/svelte
parent
cede99d68b
commit
77321f8356
@ -0,0 +1,9 @@
|
||||
export default function removeObjectKey ( code, parsed, key ) {
|
||||
if ( parsed.type !== 'ObjectExpression' ) return;
|
||||
const properties = parsed.properties;
|
||||
const index = properties.findIndex( property => property.key.type === 'Identifier' && property.key.name === key );
|
||||
if ( index === -1 ) return;
|
||||
const a = properties[ index ].start;
|
||||
const b = index < properties.length - 1 ? properties[ index + 1 ].start : properties[ index ].end;
|
||||
code.remove( a, b );
|
||||
}
|
Loading…
Reference in new issue