You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
289 B
JavaScript

'use strict';
/**
* Determines if `path2` is a subpath of or equal to `path1`
*
* @param {string} path1
* @param {string} path2
* @return {Boolean}
* @api private
*/
module.exports = function isSubpath(path1, path2) {
return path1 === path2 || path2.startsWith(path1 + '.');
};