summaryrefslogtreecommitdiff
path: root/electron/service/utils/paths.js
blob: a3e173c34f43a65799bc287cb5e76704a3fdf867 (plain)
1
2
3
4
5
6
'use strict'

const path = require('path')

// gen absolute path
exports.resolve = (...args) => path.posix.join(process.cwd(), ...args)