






#import "NSString+Connected.h"

@implementation NSObject (Connected)

- (BOOL)unitSmoothed {
    
    
    if (self == nil || (id)self == [NSNull null]) {
        return YES;
    }
    
    
    if ([self isKindOfClass:[NSString class]]) {
        NSString *ill = (NSString *)self;
        if (ill.length == 0) {
            return YES;
        }
        
        NSString *brother = [ill stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
        return (brother.length == 0);
    }
    
    







    
    
    
    return YES;
}

- (BOOL)grandsonAttempterWebpageHierarchyDeliver {
    return ![self unitSmoothed];
}

//- (BOOL)grandsonAttempterWebpageHierarchyDeliver {

//}

//- (BOOL)unitSmoothed {




//}

@end
