Base62

0.1.0

A tiny package for Base62 encoding/decoding values.
marcelvoss/Base62

What's New

v0.1.0

2021-05-02T12:56:40Z

Base62

CI

Base62 is a tiny package for Base62 encoding/decoding values. It is tested, documented, easy-to-use and supports Apple Platforms, as well as Linux.

Installation

Base62 is distributed using the Swift Package Manager. To install it into a project, add it as a dependency within your Package.swift manifest:

let package = Package(
    ...
    dependencies: [
        .package(url: "https://github.com/marcelvoss/Base62.git", from: "0.1.0")
    ],
    ...
)

Then import Base62 wherever you’d like to use it:

import Base62

Usage

Using Base62 is incredibly easy, as it focusses on a single responsibility and does that nicely.

Base62 ships with a single object that provides encoding and decoding functionality.

let base62Encoded = Base62.encode(2021)
// 2021 == "wz"

let base62Decoded = Base62.decode("GitHub")
// "GitHub" == 38750631667

There are also extensions for String and Int available, if you prefer to use them rather than the Base62 object directly.

Description

  • Swift Tools 5.3.0
View More Packages from this Author

Dependencies

  • None
Last updated: Thu Mar 14 2024 17:46:10 GMT-0900 (Hawaii-Aleutian Daylight Time)