mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 12:03:12 +00:00
11 lines
239 B
Objective-C
11 lines
239 B
Objective-C
#import "NMBStringify.h"
|
|
|
|
#if __has_include("Nimble-Swift.h")
|
|
#import "Nimble-Swift.h"
|
|
#else
|
|
#import <Nimble/Nimble-Swift.h>
|
|
#endif
|
|
|
|
NSString *_Nonnull NMBStringify(id _Nullable anyObject) {
|
|
return [NMBStringer stringify:anyObject];
|
|
}
|