学习?学个屁 06c63c15cc 初始化提交 11 月之前
..
LICENSE 06c63c15cc 初始化提交 11 月之前
README.md 06c63c15cc 初始化提交 11 月之前
index.d.ts 06c63c15cc 初始化提交 11 月之前
index.js 06c63c15cc 初始化提交 11 月之前
package.json 06c63c15cc 初始化提交 11 月之前

README.md

js-tokens

The tiny, regex powered, lenient, almost spec-compliant JavaScript tokenizer that never fails.

const jsTokens = require("js-tokens");

const jsString = 'JSON.stringify({k:3.14**2}, null /*replacer*/, "\\t")';

Array.from(jsTokens(jsString), (token) => token.value).join("|");
// JSON|.|stringify|(|{|k|:|3.14|**|2|}|,| |null| |/*replacer*/|,| |"\t"|)

➡️ Full readme