decodeBase64 

Node.js 런타임 필요 ('qsu/node')인코딩된 base64 문자열을 일반 문자열로 디코딩합니다.
Parameters
encodedStr::string
Returns
string
Examples
javascript
decodeBase64('dGhpcyBpcyB0ZXN0'); // Returns 'this is test'dart
decodeBase64('dGhpcyBpcyB0ZXN0'); // Returns 'this is test'python
decodeBase64('dGhpcyBpcyB0ZXN0') # Returns 'this is test'