Removed typo

This commit is contained in:
sekkr1 2019-08-27 17:30:33 +03:00 committed by GitHub
parent e7104f2205
commit 48d0499ae6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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) {