hexo/node_modules/ali-oss/lib/common/utils/encoder.js

10 lines
283 B
JavaScript
Raw Normal View History

2023-10-03 11:14:36 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.encoder = void 0;
function encoder(str, encoding = 'utf-8') {
if (encoding === 'utf-8')
return str;
return Buffer.from(str).toString('latin1');
}
exports.encoder = encoder;