mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-05 22:37:45 +01:00
22 lines
285 B
Objective-C
22 lines
285 B
Objective-C
//
|
|
// NSData+RSParser.h
|
|
// RSParser
|
|
//
|
|
// Created by Brent Simmons on 6/24/17.
|
|
// Copyright © 2017 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
|
|
|
|
@interface NSData (RSParser)
|
|
|
|
- (BOOL)isProbablyHTML;
|
|
- (BOOL)isProbablyXML;
|
|
- (BOOL)isProbablyJSON;
|
|
|
|
@end
|
|
|
|
|
|
|