CoolFace
Apppublic

opusdev/vector-similarity-api

sourceHugging Faceupdated 5mo agoView on Hugging Face
1likes
example.js15 linesDownload Raw Back to undefsafe
1var undefsafe = require('undefsafe');2 3var object = {4  a: {5    b: {6      c: 1,7      d: [1, 2, 3],8      e: 'remy'9    }10  }11};12 13console.log(undefsafe(object, 'a.b.e')); // "remy"14console.log(undefsafe(object, 'a.b.not.found')); // undefined15