mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 18:12:26 +03:00
10 lines
243 B
JavaScript
10 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)) );
|
||
|
};
|