blob: 75611656ae7e3d75816944f239f7afa38a5d8d0d [file] [log] [blame]
'use strict';
var isPathInside = require('is-path-inside');
module.exports = function (str) {
return isPathInside(str, process.cwd());
};