Skip to content

bimedia-fr/node-sigma-message

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-sigma-message

simple key-value message parser and formater

introduction

Format and parses string containing key-value pairs.

synopsis

var parser = require('sigma-message')();

var obj = parser.parse('key=value;other=val');
console.log(obj);
// outputs {key:value,other:val}

installation

$ npm install sigma-message

API

parser(config)

The constructor function creates a new parser. Optionnal parameter options allow to change separator and delimiter. config :

  • delimiter : default is ';'
  • separator : default is '='

.parse(string)

Parse a string and return an objet containing key and values.

.format(obj)

Returns a string containing parameters properties and values.

About

simple key-value message parser and formater

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published