How to copy data from user profile page (profile.php) to theme customizer

anybody that looking for solution here is what i found that work for me.
to get some data from any field in profile page you need to use this function:

<?php get_the_author_meta( $field, $userID ); ?>

then if you want to update some value in theme customizer you can use this function:

set_theme_mod( 'field name', '$value' );