mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2025-01-22 07:13:58 +01:00
22 lines
285 B
C
22 lines
285 B
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
|
||
|
|
||
|
|
||
|
|