# string-to-ascii **Repository Path**: violetice/string-to-ascii ## Basic Information - **Project Name**: string-to-ascii - **Description**: 本项目的唯一功能是将字符串转换为 ASCII 编码,以此帮助 epub 小说绕过内容检测。 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-02-01 - **Last Updated**: 2025-02-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 简体中文 | [English](./readme.en.md) # 简介 本项目的唯一功能是将字符串转换为 ASCII 编码,以此帮助 epub 小说绕过内容检测。 # 安装 ```shell # npm npm i @violetice/string-to-ascii # yarn yarn add @violetice/string-to-ascii ``` # 使用方法 ```js import {asciiToString, stringToAscii} from "@violetice/string-to-ascii"; let ascii = stringToAscii('Hello World') // ascii = Hello World let str = asciiToString(ascii) // str = Hello World ``` emm…… ``` // ascii = Hello World // str = Hello World ```