1.0.1 • Published 8 years ago

minecraft-motd-parser v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
8 years ago

MOTD parser

var parser = require('minecraft-motd-parser');
var motd = "§00 §11 §22 §33";

parser.parse(motd, function (err, result) {
    /* result
     *  [{rules: {color: "black"}, string: '0 '},
     *   {rules: {color: "dark-blue"}, string: '1 '},
     *   {rules: {color: "dark-green"}, string: '2 '},
     *   {rules: {color: "dark-acqua"}, string: '3'}]
     */
});