Hi,
My project depends on find-my-way through fastify.
For debugging purposes that have nothing to do with either of those, I wanted to temporarily add the following into my code :
Object.prototype.tap = function(fn) { fn(this); return this; };
But suddenly, I encountered the following error :
Error: unknown non-custom strategy for compiling constraint derivation function
at Constrainer._buildDeriveConstraints (node_modules/find-my-way/lib/constrainer.js:159:17)
at Constrainer.noteUsage (node_modules/find-my-way/lib/constrainer.js:88:14)
at Router._on (node_modules/find-my-way/index.js:154:20)
at Router.on (node_modules/find-my-way/index.js:139:10)
at Object.addNewRoute (node_modules/fastify/lib/route.js:360:16)
at Object.route (node_modules/fastify/lib/route.js:261:19)
at Object.prepareRoute (node_modules/fastify/lib/route.js:167:18)
at Object._get [as get] (node_modules/fastify/fastify.js:261:34)
I also tried the following but it didn't change anything :
Object.defineProperty(Object.prototype, 'tap', { enumerable: false, value: function (fn) { fn(this); return this; }});
Thanks
Hi,
My project depends on
find-my-waythroughfastify.For debugging purposes that have nothing to do with either of those, I wanted to temporarily add the following into my code :
But suddenly, I encountered the following error :
I also tried the following but it didn't change anything :
Thanks