DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
201 Bytes
"use strict";
var path = require("path");
module.exports = function ensurePosix(filepath) {
if (path.sep !== '/') {
return filepath.split(path.sep).join('/');
}
return filepath;
};