Skip to content

Commit d400c8d

Browse files
Richienbsindresorhus
andauthoredSep 8, 2021
Return default value if path is invalid (#86)
Co-authored-by: Sindre Sorhus <sindresorhus@gmail.com>
1 parent 09adad9 commit d400c8d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ module.exports = {
3939

4040
const pathArray = getPathSegments(path);
4141
if (pathArray.length === 0) {
42-
return;
42+
return value;
4343
}
4444

4545
for (let i = 0; i < pathArray.length; i++) {

‎test.js

+4
Original file line numberDiff line numberDiff line change
@@ -213,3 +213,7 @@ test('prevent setting/getting `__proto__`', t => {
213213

214214
t.is(dotProp.get({}, '__proto__'), undefined);
215215
});
216+
217+
test('return default value if path is invalid', t => {
218+
t.is(dotProp.get({}, 'constructor', '🦄'), '🦄');
219+
});

0 commit comments

Comments
 (0)
Please sign in to comment.