UNPKG

@loki/core

Version:
11 lines (8 loc) 226 B
const path = require('path'); const getAbsoluteURL = (url) => { if (url && url.indexOf('file:') === 0) { return `file:${path.resolve(url.substr('file:'.length))}`; } return url; }; module.exports = getAbsoluteURL;