woocommerce-paypal-payments/modules/ppcp-wc-gateway/resources/js/helper/form.js
Emili Castells Guasch 11105d913b Run eslint autofix
2024-07-12 12:58:34 +02:00

11 lines
227 B
JavaScript

export const inputValue = ( element ) => {
const $el = jQuery( element );
if ( $el.is( ':checkbox' ) || $el.is( ':radio' ) ) {
if ( $el.is( ':checked' ) ) {
return $el.val();
}
return null;
}
return $el.val();
};