mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-09 18:39:25 +02:00
5 lines
123 B
JavaScript
5 lines
123 B
JavaScript
'use strict';
|
|
const isPathInside = require('is-path-inside');
|
|
|
|
module.exports = path => isPathInside(path, process.cwd());
|