elenpi-simple-function-call-parser

1.0.4 • Public • Published

elenpi-simple-function-call-parser

Travis branch bitHound Overall Score bitHound Dependencies bitHound Dev Dependencies licence Conventional Commits Commitizen friendly

Simple "function call" parser.

Works browser side and server side.

Safe to use (no eval).

Usage

npm i elenpi-simple-function-call-parser --save
const parser = require('elenpi-simple-function-call-parser');
 
const call = parser.parseFragment('foo(12, true, "zoo, bar", null, NaN, Infinity, undefined)');
 
const util = require('util');
console.log('call:', util.inspect(call, true, 10, true));
 
// output : { method: 'foo', arguments: [ 12, true, 'zoo, bar', null, NaN, Infinity, undefined ] }
 

Take a look to tests to see more outputs.

Allowed argument types

  • single quoted string : 'Lorem ipsum...'
  • double quoted string : "Lorem ipsum..."
  • template quoted string : (backtick)
  • integer
  • float
  • boolean
  • NaN
  • Infinity
  • undefined
  • null

Licence

The MIT License

Copyright 2017 (c) Gilles Coomans

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

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 NONINFRINGEMENT. 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.

Package Sidebar

Install

npm i elenpi-simple-function-call-parser

Weekly Downloads

0

Version

1.0.4

License

MIT

Last publish

Collaborators

  • nomocas