Dashboard
PHP:
8.2.30
OS:
Linux
User:
dh_nv8b2m
/
/
usr
/
share
/
nodejs
/
ensure-posix-path
📤 Upload
📝 New File
📁 New Folder
Close
Editing: index.js
"use strict"; var path = require("path"); module.exports = function ensurePosix(filepath) { if (path.sep !== '/') { return filepath.split(path.sep).join('/'); } return filepath; }; //# sourceMappingURL=index.js.map
Save
Cancel