Commit
This commit is contained in:
commit
d1c8cae2c1
1417 changed files with 326736 additions and 0 deletions
14
node_modules/mongoose/lib/helpers/projection/isSubpath.js
generated
vendored
Normal file
14
node_modules/mongoose/lib/helpers/projection/isSubpath.js
generated
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
'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 + '.');
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue