CSS was not being imported! Fixed: ✅ Added 'import ../styles/global.css' to BaseLayout.astro ✅ Rewrote CSS with plain CSS (not @apply which wasn't working) ✅ Cookie banner has inline styles as backup ✅ Font size: 16px base ✅ Solid colors: green-600 (#16a34a), gray-900 (#111827) ✅ Footer has policy links Build: 12 pages ✅
24 lines
664 B
Markdown
24 lines
664 B
Markdown
# @oslojs/encoding
|
|
|
|
**Documentation: https://encoding.oslojs.dev**
|
|
|
|
A JavaScript library for encoding and decoding data with hexadecimal, base32, base64, and base64url encoding schemes based on [RFC 4648](https://datatracker.ietf.org/doc/html/rfc4648). Implementations may be stricter than most to follow the RFC as close as possible.
|
|
|
|
- Runtime-agnostic
|
|
- No third-party dependencies
|
|
- Fully typed
|
|
|
|
```ts
|
|
import { encodeBase64, decodeBase64 } from "@oslojs/encoding";
|
|
|
|
const data: Uint8Array = new TextEncoder().encode("hello world");
|
|
const encoded = encodeBase64(data);
|
|
const decoded = decodeBase64(encoded);
|
|
```
|
|
|
|
## Installation
|
|
|
|
```
|
|
npm i @oslojs/encoding
|
|
```
|