(dec, bytes)
| 691 | * @returns {string} the result. |
| 692 | */ |
| 693 | var decToHex = function(dec, bytes) { |
| 694 | var hex = "", i; |
| 695 | for (i = 0; i < bytes; i++) { |
| 696 | hex += String.fromCharCode(dec & 0xff); |
| 697 | dec = dec >>> 8; |
| 698 | } |
| 699 | return hex; |
| 700 | }; |
| 701 | |
| 702 | /** |
| 703 | * Generate the UNIX part of the external file attributes. |
no outgoing calls
no test coverage detected