mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
7 lines
140 B
JavaScript
7 lines
140 B
JavaScript
'use strict';
|
|
var isPathInside = require('is-path-inside');
|
|
|
|
module.exports = function (str) {
|
|
return isPathInside(str, process.cwd());
|
|
};
|