/**
 * 汎用関数オブジェクト
 */
(function($) {

    wp.util = {


        /***********************************************************************
         * 計算・演算・汎用系
         ***********************************************************************/
        random : function(len, source){
            var result = '';

            switch (arguments.length) {
                case 1:
                    source = '0123456789abcdefghijklmnopqrstuvwxyz';
            }
            var sourceLen = source.length;
            for (var i = 0; i < len; i++) {
                result += source.charAt(Math.floor(Math.random() * sourceLen));
            }
            return result;
        },


        /***********************************************************************
         * 時間系
         ***********************************************************************/
        getDateFromUnixDate : function(unixdate){
            return new Date(unixdate.replace(/\-/g, '/'));
        },


        /***********************************************************************
         * 文字列系
         ************************************************************************/
        htmlUnEscape : function(str){
              return str.replace(/&lt;|&gt;|&amp;|&#39;|&quot;|&nbsp;/g, function(s){
                var map = {"&lt;":"<", "&gt;":">", "&amp;":"&", "&#39;":"'", "&quot;":"\"", "&nbsp;":" "};
                return map[s];
              });
        },


        /***********************************************************************
         * 暗号化・ハッシュ関数系
         ***********************************************************************/
        hexMd5 : function(){
            //別ファイルにて、上書き
        }
    }
})(window.wpjQ);

