@kizmann/pico-js 0.3.27 → 0.3.28

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kizmann/pico-js",
3
- "version": "0.3.27",
3
+ "version": "0.3.28",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Eduard Kizmann <kizmann@protonmail.ch>",
@@ -27,7 +27,7 @@ export class Obj
27
27
  keys = keys.join('.');
28
28
  }
29
29
 
30
- if ( obj[keys] !== undefined ) {
30
+ if ( obj[keys] !== undefined && obj[keys] !== null ) {
31
31
  return obj[keys];
32
32
  }
33
33