mirror of
https://github.com/Raghu-Ch/nodeRestAPI.git
synced 2026-02-11 05:03:02 -05:00
initial commit
This commit is contained in:
27
node_modules/xdg-basedir/index.js
generated
vendored
Normal file
27
node_modules/xdg-basedir/index.js
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
'use strict';
|
||||
var path = require('path');
|
||||
var osHomedir = require('os-homedir');
|
||||
var home = osHomedir();
|
||||
var env = process.env;
|
||||
|
||||
exports.data = env.XDG_DATA_HOME ||
|
||||
(home ? path.join(home, '.local', 'share') : null);
|
||||
|
||||
exports.config = env.XDG_CONFIG_HOME ||
|
||||
(home ? path.join(home, '.config') : null);
|
||||
|
||||
exports.cache = env.XDG_CACHE_HOME || (home ? path.join(home, '.cache') : null);
|
||||
|
||||
exports.runtime = env.XDG_RUNTIME_DIR || null;
|
||||
|
||||
exports.dataDirs = (env.XDG_DATA_DIRS || '/usr/local/share/:/usr/share/').split(':');
|
||||
|
||||
if (exports.data) {
|
||||
exports.dataDirs.unshift(exports.data);
|
||||
}
|
||||
|
||||
exports.configDirs = (env.XDG_CONFIG_DIRS || '/etc/xdg').split(':');
|
||||
|
||||
if (exports.config) {
|
||||
exports.configDirs.unshift(exports.config);
|
||||
}
|
||||
Reference in New Issue
Block a user