mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 11:33:13 +00:00
16 lines
350 B
Swift
16 lines
350 B
Swift
//
|
|
// String+PercentEncoding.swift
|
|
// MasKit
|
|
//
|
|
// Created by Ben Chatelain on 1/5/19.
|
|
// Copyright © 2019 mas-cli. All rights reserved.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public extension String {
|
|
/// Return an URL encoded string
|
|
var URLEncodedString: String? {
|
|
return addingPercentEncoding(withAllowedCharacters: .urlQueryAllowed)
|
|
}
|
|
}
|