22 lines
331 B
JavaScript
22 lines
331 B
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { __ } from '@wordpress/i18n';
|
|
|
|
export function getTaxCode( tax ) {
|
|
return [
|
|
tax.country,
|
|
tax.state,
|
|
tax.name || __( 'TAX', 'woocommerce-admin' ),
|
|
tax.priority,
|
|
]
|
|
.map( ( item ) =>
|
|
item
|
|
.toString()
|
|
.toUpperCase()
|
|
.trim()
|
|
)
|
|
.filter( Boolean )
|
|
.join( '-' );
|
|
}
|