Files
mokangleb1818-crypto 61b4c108c2
Some checks failed
CI / ci (push) Has been cancelled
ptoect
2026-05-18 10:55:29 +03:00
..
2026-05-18 10:55:29 +03:00
2026-05-18 10:55:29 +03:00
2026-05-18 10:55:29 +03:00
2026-05-18 10:55:29 +03:00
2026-05-18 10:55:29 +03:00

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