/**
  * Instantiate or return the one Customizer_Library instance.
  *
  * @since  1.0.0.
  *
  * @return Customizer_Library
  */
 public static function instance()
 {
     if (is_null(self::$instance)) {
         self::$instance = new self();
     }
     return self::$instance;
 }