Files
gruvbox/node_modules/cachedir/index.js

42 lines
1.0 KiB
JavaScript

var os = require('os')
var path = require('path')
var homedir = require('os-homedir')
function linux (id) {
var cacheHome = process.env.XDG_CACHE_HOME || path.join(homedir(), '.cache')
return path.join(cacheHome, id)
}
function darwin (id) {
return path.join(homedir(), 'Library', 'Caches', id)
}
function win32 (id) {
var appData = process.env.LOCALAPPDATA || path.join(homedir(), 'AppData', 'Local')
return path.join(appData, id, 'Cache')
}
var implementation = (function () {
switch (os.platform()) {
case 'android':
case 'linux': return linux
case 'darwin': return darwin
case 'win32': return win32
default: throw new Error('Your OS is currently not supported by node-cachedir.')
}
}())
module.exports = function (id) {
if (typeof id !== 'string') {
throw new TypeError('id is not a string')
}
if (id.length === 0) {
throw new Error('id cannot be empty')
}
if (/[^0-9a-zA-Z-]/.test(id)) {
throw new Error('id cannot contain special characters')
}
return implementation(id)
}