mirror of
https://github.com/wu736139669/Monkey-Test.git
synced 2026-08-06 06:14:53 +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());
|
|
};
|