1 //  Copyright © 2019 650 Industries. All rights reserved.
2 
3 #import <Foundation/Foundation.h>
4 
5 NS_ASSUME_NONNULL_BEGIN
6 
7 /**
8  * Derivation of ParameterParser class in the apache commons file upload
9  * project: https://commons.apache.org/proper/commons-fileupload/
10  *
11  * A simple parser intended to parse sequences of name/value pairs.
12  *
13  * Parameter values are expected to be enclosed in quotes if they
14  * contain unsafe characters, such as '=' characters or separators.
15  * Parameter values are optional and can be omitted.
16  */
17 @interface EXUpdatesParameterParser : NSObject
18 
19 - (NSDictionary *)parseParameterString:(NSString *)parameterString withDelimiter:(unichar)delimiter;
20 
21 @end
22 
23 NS_ASSUME_NONNULL_END
24