Merge pull request #8 from sekkr1/master

Removed typo
This commit is contained in:
iddoeldor 2019-09-02 16:34:50 +03:00 committed by GitHub
commit 0fc76eafb3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1865,7 +1865,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) {