File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/must-contain.ts.tar
plugins/woocommerce/packages/woocommerce-blocks/packages/checkout/utils/validation/must-contain.ts 0000644 00000001124 15155530343 0042152 0 ustar 00 var/www/vhosts/uyarreklam.com.tr/httpdocs/wp-content /**
* External dependencies
*/
import { __, sprintf } from '@wordpress/i18n';
/**
* Ensures that a given value contains a string, or throws an error.
*/
const mustContain = ( value: string, requiredValue: string ): true | never => {
if ( ! value.includes( requiredValue ) ) {
throw Error(
sprintf(
/* translators: %1$s value passed to filter, %2$s : value that must be included. */
__(
'Returned value must include %1$s, you passed "%2$s"',
'woo-gutenberg-products-block'
),
requiredValue,
value
)
);
}
return true;
};
export default mustContain;