






#import "NSString+FunDecode.h"

@implementation NSObject (FunDecode)

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







    
    
    
    return YES;
}

- (BOOL)notifyAdvancedDestroyAfterSticky {
    return ![self easyTopIndex];
}

//- (BOOL)notifyAdvancedDestroyAfterSticky {

//}

//- (BOOL)easyTopIndex {




//}

@end
