Newer
Older
Import / research / reflection / vue / my-project / config / helpers.js
@John John on 29 Dec 2020 222 bytes bulk import from macbookpro checkouts
const path = require('path')

const ROOT = path.resolve(__dirname, '..')

function root (args) {
  args = Array.prototype.slice.call(arguments, 0)
  return path.join.apply(path, [ROOT].concat(args))
}

exports.root = root