How to use the js-tokens.matchToToken function in js-tokens

To help you get started, we’ve selected a few js-tokens examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github rikumi / fresh-shell / plugins / config.js View on Github external
colorizeCode(code) {
        if (!code) return '';
        let result = '';
        let match = tokens.default.exec(code);
        while (match) {
            let token = tokens.matchToToken(match);
            result += config.colorizeToken(token);
            match = tokens.default.exec(code);
        }
        return result;
    },
    colorizeCommand(command, error, ended = true) {

js-tokens

Tiny JavaScript tokenizer.

MIT
Latest version published 3 months ago

Package Health Score

80 / 100
Full package analysis