From 48d0499ae61bd114ca6bf6cd5f419a3b4edbdf4b Mon Sep 17 00:00:00 2001 From: sekkr1 Date: Tue, 27 Aug 2019 17:30:33 +0300 Subject: [PATCH] Removed typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dfdd34e..b8df773 100644 --- a/README.md +++ b/README.md @@ -1835,7 +1835,7 @@ Example of quick&dirty iOS device properties extraction var UIDevice = ObjC.classes.UIDevice.currentDevice(); UIDevice.$ownMethods .filter(function(method) { - return method.indexOf(':') == -1 /* filter out methods with parameters */ยท + return method.indexOf(':') == -1 /* filter out methods with parameters */ && method.indexOf('+') == -1 /* filter out public methods */ }) .forEach(function(method) {