UNPKG

inklecate

Version:

A tiny wrapper around the desktop executables for ink's command-line Ink language compiler.

9 lines (6 loc) 211 B
const { join } = require('path'); const { v5 } = require('uuid'); const cacheDir = join(__dirname, 'cache'); module.exports = (filepath) => { return join(cacheDir, `${v5(filepath, v5.URL)}.json`) };