https://github.com/zignis/unpad-base64
Removes padding from a base64 string
https://github.com/zignis/unpad-base64
base64
Last synced: 4 months ago
JSON representation
Removes padding from a base64 string
- Host: GitHub
- URL: https://github.com/zignis/unpad-base64
- Owner: zignis
- License: mit
- Created: 2023-08-11T04:13:49.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-20T08:48:56.000Z (over 1 year ago)
- Last Synced: 2025-02-15T06:26:51.890Z (5 months ago)
- Topics: base64
- Language: JavaScript
- Homepage:
- Size: 166 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unpad-base64



Removes padding from a base64 string
## Test coverage
| Statements | Branches | Functions | Lines |
| --------------------------- | ----------------------- | ------------------------- | ----------------- |
|  |  |  |  |## Usage
```typescript
import { unpadBase64 } from 'unpad-base64';const unpadded = unpadBase64(paddedBase64);
```