18 lines
332 B
JavaScript
18 lines
332 B
JavaScript
/** @format */
|
|
/**
|
|
* 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( '-' );
|
|
}
|