mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-09-15 20:37:24 +00:00
20 lines
540 B
JavaScript
20 lines
540 B
JavaScript
'use strict';
|
|
|
|
import utils from '../utils.js';
|
|
import toFormData from './toFormData.js';
|
|
import platform from '../platform/index.js';
|
|
|
|
export default function toURLEncodedForm(data, options) {
|
|
return toFormData(data, new platform.classes.URLSearchParams(), {
|
|
visitor: function(value, key, path, helpers) {
|
|
if (platform.isNode && utils.isBuffer(value)) {
|
|
this.append(key, value.toString('base64'));
|
|
return false;
|
|
}
|
|
|
|
return helpers.defaultVisitor.apply(this, arguments);
|
|
},
|
|
...options
|
|
});
|
|
}
|