���� JFIF �� � ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /lib/node_modules/forever/node_modules/utile/lib/ |
/* * base64.js: An extremely simple implementation of base64 encoding / decoding using node.js Buffers * * (C) 2010, Charlie Robbins & the Contributors. * */ var base64 = exports; // // ### function encode (unencoded) // #### @unencoded {string} The string to base64 encode // Encodes the specified string to base64 using node.js Buffers. // base64.encode = function (unencoded) { var encoded; try { encoded = new Buffer(unencoded || '').toString('base64'); } catch (ex) { return null; } return encoded; }; // // ### function decode (encoded) // #### @encoded {string} The string to base64 decode // Decodes the specified string from base64 using node.js Buffers. // base64.decode = function (encoded) { var decoded; try { decoded = new Buffer(encoded || '', 'base64').toString('utf8'); } catch (ex) { return null; } return decoded; };