mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 10:02:33 +03:00
9 lines
243 B
JavaScript
9 lines
243 B
JavaScript
// Platform-specific functions to support jsdoc.js
|
|
|
|
exports.pathToUri = function(_path) {
|
|
return String( new java.io.File(_path).toURI() );
|
|
};
|
|
|
|
exports.uriToPath = function(uri) {
|
|
return String( new java.io.File(new java.net.URI(uri)) );
|
|
};
|