I have already a newly created custom jquery plugin, my question is how to minimize its footprint? like from lines of codes into "1 line" only like other jquery plugin author does.
example:
From this:
(function ($) {
    $.fn.cPlugin = function () {
        //lines of codes here
        // another line of codes here
    }
}(jQuery));
Into this:
(function($){$.fn.cPlugin = function(){//lines of codes here and // another line of codes here}}(jQuery));
 
     
     
    