📁
SKYSHELL MANAGER
PHP v8.3.6
Create
Create
Path:
root
/
var
/
www
/
voigtlaborg
/
wp-content
/
Name
Size
Perm
Actions
📁
themes
-
0755
🗑️
🏷️
🔒
📄
api.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
goods.php
173.77 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
load.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: README.md
# babel-plugin-transform-charcodes > Replace charcodes AOT ## Examples ### Constants in: ```js import * as charcodes from "charcodes" charcodes.space ``` out: ```js 32 ``` ### Functions in: ```js import * as charcodes from "charcodes" (charcodes.isDigit(1)) ``` out: ```js (function isDigit(code) { return code >= 48 && code <= 57; }(1)) ``` ## Installation ```sh npm install --save-dev babel-plugin-transform-charcodes ``` ## Usage ### Via `.babelrc` (Recommended) **.babelrc** ```json { "plugins": ["transform-charcodes"] } ``` ### Via CLI ```sh babel --plugins transform-charcodes script.js ``` ### Via Node API ```javascript require("@babel/core").transform("code", { plugins: ["transform-charcodes"] }); ```
Save