![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
@confuzzle/ecoji-buffers
Advanced tools
Encode and decode arbitrary data as emoji. Since it uses ecoji-js under the hood it may be compatible with the ecoji standard, but has not been tested for this.
Huge thanks are owed to the following authors whose work is used in this package under license:
This package differs from the packages above in that it operates with buffers. ecoji-js only accepts and produces strings, so is less convenient for arbitrary binary data. emojicoding accepts only arrays of emoji to decode, meaning strings need to be split into emoji (non-trivial). See grapheme-splitter for a possible way to do this.
ecoji-buffers
also differs from these packages in that it is a standalone package with no dependencies.
encode(x)
- encodes a Uint8Array
or Buffer
as an emoji stringdecode(x)
- decodes an emoji string to a Buffer
const ecoji = require('@confuzzle/ecoji-buffers');
const x = Buffer.from('Hello world');
const y = ecoji.encode(x);
console.log(y); // 🏯🔩🚗🌷🍉🤣🦒🕊👡
const z = ecoji.decode(y).toString();
console.log(z); // Hello world
This package has not been optimised for performance in any way, and has not been extensively tested. Use at your own risk.
FAQs
Encode and decode arbitrary data as emoji
We found that @confuzzle/ecoji-buffers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.