WC_Gateway_Paypal_Request::currency_has_decimals( string $currency )
Check if currency has decimals.
Description Description
Parameters Parameters
- $currency
-
(Required) Currency to check.
Return Return
(bool)
Source Source
File: includes/gateways/paypal/includes/class-wc-gateway-paypal-request.php
protected function currency_has_decimals( $currency ) { if ( in_array( $currency, array( 'HUF', 'JPY', 'TWD' ), true ) ) { return false; } return true; }