UNPKG

sls-helper-plugin-janis

Version:

A Serverless Helper plugin to add custom helpers for Janis Commerce

18 lines (13 loc) 283 B
'use strict'; const path = require('path'); const getFileDirFromApiPath = apiPath => { return path.resolve(apiPath .toLowerCase() .replace(/{\w+}/g, '') .replace(/\/{2,}/g, '/')) .replace(/^\//, '') .replace(/\/$/, ''); }; module.exports = { getFileDirFromApiPath };