mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-04-25 08:44:36 +00:00
* Split base64 utility functions to two platforms * Simplify Nodejs atob * Update change note * Update docs * Move base64Decode & base64Encode back to utils.js * Add missing use strict
14 lines
533 B
Plaintext
14 lines
533 B
Plaintext
title: $:/changenotes/5.4.0/#9488
|
|
description: Refactor base64 utility functions
|
|
release: 5.4.0
|
|
tags: $:/tags/ChangeNote
|
|
change-type: enhancement
|
|
change-category: internal
|
|
github-links: https://github.com/TiddlyWiki/TiddlyWiki5/pull/9488
|
|
github-contributors: Leilei332
|
|
|
|
Refactor base64 utility functions in [[$:/core/modules/utils/utils.js]] to make it easier for maintainence.
|
|
|
|
* Split base64 utility functions to two platforms
|
|
* Use `TextEncoder` and `TextDecoder` api in Node.js
|
|
* Do not export `base64ToBytes` and `bytesToBase64` |