Created
May 23, 2018 16:40
-
-
Save jpitchardu/aa79bc49214a5d404073fd52b8bbea29 to your computer and use it in GitHub Desktop.
Revisions
-
jpitchardu created this gist
May 23, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ function optional(obj, evalFunc, def) { const handler = { get: function(target, prop, receiver) { const res = Reflect.get(...arguments); return typeof res === "object" ? proxify(res) : res != null ? res : def; } }; const proxify = target => { return new Proxy(target, handler); }; return evalFunc(proxify(obj, handler)); } const obj = { items: [{ hello: "Hello" }] }; console.log(optional(obj, target => target.items[0].hello, "def")); // => Hello console.log(optional(obj, target => target.items[0].hell, { a: 1 })); // => { a: 1 }