mirror of
https://github.com/samsonjs/arq_restore.git
synced 2026-03-25 09:25:53 +00:00
18 lines
355 B
Objective-C
18 lines
355 B
Objective-C
//
|
|
// NSString_slashed.m
|
|
// Arq
|
|
//
|
|
// Created by Stefan Reitshamer on 4/22/11.
|
|
// Copyright 2011 Haystack Software. All rights reserved.
|
|
//
|
|
|
|
#import "NSString_slashed.h"
|
|
|
|
@implementation NSString (slashed)
|
|
- (NSString *)slashed {
|
|
if ([self isEqualToString:@"/"]) {
|
|
return self;
|
|
}
|
|
return [self stringByAppendingString:@"/"];
|
|
}
|
|
@end
|