(bytes []byte)
| 151 | } |
| 152 | |
| 153 | func base64EncodeBytes(bytes []byte) (string, error) { |
| 154 | return base64.StdEncoding.EncodeToString(bytes), nil |
| 155 | } |
| 156 | |
| 157 | func estimateEncode(estimator checker.CostEstimator, target *checker.AstNode, args []checker.AstNode) *checker.CallEstimate { |
| 158 | if len(args) != 1 { |