Skip to content

xxxx.apply is not a function#35

Description

@gaodeng

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[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) => {

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions