UNPKG

@mockyeah/server

Version:

A powerful service mocking, recording, and playback utility.

9 lines (6 loc) 233 B
'use strict'; const path = require('path'); const relativeRoot = require('./relativeRoot'); module.exports = function expandPath(_path, root = relativeRoot) { return path.isAbsolute(_path) ? _path : path.resolve(root, _path); };