We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch objc@0.22.0 for the project I'm working on.
objc@0.22.0
objc[cls][method](...args) // xxxx.apply is not a function
Here is the diff that solved my problem:
diff --git a/node_modules/objc/src/proxies.js b/node_modules/objc/src/proxies.js index 4063011..bfe8622 100644 --- a/node_modules/objc/src/proxies.js +++ b/node_modules/objc/src/proxies.js @@ -14,6 +14,7 @@ const MethodProxy = (object, selector) => { if (key === util.inspect.custom) { return () => `[objc.MethodProxy '${self.type === 'class' ? '+' : '-'}[${object.class()} ${selector}]']`; } + return pseudoTarget[key]; }, apply: (target, _this, args) => {
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch
objc@0.22.0
for the project I'm working on.Here is the diff that solved my problem:
The text was updated successfully, but these errors were encountered: