We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978501e commit b8c4077Copy full SHA for b8c4077
lib/node_modules/@stdlib/proxy/ctor/lib/polyfill.js
@@ -25,7 +25,6 @@
25
*
26
* @private
27
* @param {Object} target - target object to wrap
28
-* @param {Object} handlers - object whose properties are functions defining proxy behavior
29
* @returns {Object} proxied object
30
31
* @example
@@ -45,7 +44,7 @@
45
44
* // eslint-disable-next-line stdlib/jsdoc-doctest
46
* // returns 6.28
47
*/
48
-function Proxy( target, handlers ) {
+function Proxy( target ) {
49
// eslint-disable-next-line no-warning-comments
50
// TODO: polyfill implementation
51
return target;
0 commit comments