mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-21 08:59:07 +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());
|
||
|
};
|