serverless
Version:
Serverless Framework - Build web, mobile and IoT applications with serverless architectures using AWS Lambda, Azure Functions, Google CloudFunctions & more
13 lines (9 loc) • 390 B
JavaScript
;
const homedir = require('os').homedir();
const path = require('path');
const crypto = require('crypto');
const getCacheFilePath = function (servicePath) {
const servicePathHash = crypto.createHash('sha256').update(servicePath).digest('hex');
return path.join(homedir, '.serverless', 'cache', servicePathHash, 'autocomplete.json');
};
module.exports = getCacheFilePath;