mirror of
https://github.com/strapi/strapi.git
synced 2025-08-11 10:18:28 +00:00
23 lines
592 B
JavaScript
23 lines
592 B
JavaScript
'use strict';
|
|
|
|
const _ = require('lodash');
|
|
|
|
/**
|
|
* Returns a path (as an array) from a file path
|
|
* @param {string} filePath - a file path
|
|
* @param {boolean} useFileNameAsKey - wethear to skip the last path key
|
|
*/
|
|
module.exports = (filePath, useFileNameAsKey = true) => {
|
|
let cleanPath = filePath.startsWith('./') ? filePath.slice(2) : filePath;
|
|
|
|
const prop = cleanPath
|
|
.replace(/(\.settings|\.json|\.js)/g, '')
|
|
.toLowerCase()
|
|
.split('/')
|
|
.map(p => _.trimStart(p, '.'))
|
|
.join('.')
|
|
.split('.');
|
|
|
|
return useFileNameAsKey === true ? prop : prop.slice(0, -1);
|
|
};
|