UNPKG

basepath

Version:

Simple base path library for Node.js apps.

14 lines (10 loc) 195 B
(function() { 'use strict'; var basePath = ''; exports.set = function(path) { basePath = path; }; exports.path = function() { return basePath; }; })();