Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

callback-string

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

callback-string

Strigify and parse an callback-string

  • 0.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

callback-string

js-standard-style Build Status

callback-string can be useful if you are using a command pattern approach or RPC or simply when you need to save a callback to call later (see Facebook Messenger postback). callback-string has only two method, parse and stringify, the first transforms a callback object to the respective string, the second viceversa.

Example:

const parse = require('callback-string/Parse')
const stringify = require('callback-string/Stringify')

const obj = {
  callback: 'getData',
  parameters: {
    from: '10/02/2002',
    to: '11/03/2008'
  }
}

const str = stringify(obj).result
console.log(str) // getData#from=10/02/2002#to=11/03/2008

const objParsed = parse(obj)
console.log(objParsed)

As you can see it expects that the object to stringify is formatted in this way:

const obj = {
  callback: 'actionName', // string
  parameters: {         // object
    par1: 'par1',       // any type
    par2: 2             // any type
  }
}

const str = 'actionName#par1=par1#par2=2'

Install

npm install callback-string --save

Usage

parse(callbackString, escape)

callbackString must be a string
escape must be a string, default to '#'
Returns an object formatted as described above.

stringify(callbackObject, escape)

callbackObject must be an object as described above
escape must be a string, default to '#'
Returns a string formatted as described above.

Contributing

If you feel you can help in any way, be it with examples, extra testing, or new features please open a pull request or open an issue.

The code follows the Standard code style.
js-standard-style

License

MIT

The software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose and non infringement. In no event shall the authors or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.

Copyright © 2016 Tomas Della Vedova

Keywords

FAQs

Package last updated on 02 Oct 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc