Changeset 16042

Show
Ignore:
Timestamp:
07/20/08 00:02:43 (5 years ago)
Author:
cho45
Message:

デバッグコードを削除

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/pdc/trunk/pdc.js

    r16041 r16042  
    3232                return str 
    3333                        .replace(/&(#(x)?)?([^;]+);/g, function (_, isNumRef, isHex, ref) { 
    34                                 console.log([isNumRef, isHex, ref]); 
    3534                                return isNumRef ? String.fromCharCode(parseInt(ref, isHex ? 16 : 10)): 
    3635                                                  {"lt":"<","gt":"<","amp":"&"}[ref];