https://github.com/nomocas/elenpi-simple-function-call-parser
Simple "function call" parser.
https://github.com/nomocas/elenpi-simple-function-call-parser
Last synced: 3 months ago
JSON representation
Simple "function call" parser.
- Host: GitHub
- URL: https://github.com/nomocas/elenpi-simple-function-call-parser
- Owner: nomocas
- Created: 2017-11-16T09:57:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-03-01T04:18:13.000Z (over 2 years ago)
- Last Synced: 2025-02-22T05:46:06.315Z (3 months ago)
- Language: JavaScript
- Size: 769 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# elenpi-simple-function-call-parser
[](https://travis-ci.org/nomocas/elenpi-simple-function-call-parser)
[](https://www.bithound.io/github/nomocas/elenpi-simple-function-call-parser)
[](https://www.bithound.io/github/nomocas/elenpi-simple-function-call-parser/master/dependencies/npm)
[](https://www.bithound.io/github/nomocas/elenpi-simple-function-call-parser/master/dependencies/npm)
[](https://spdx.org/licenses/MIT)
[](https://conventionalcommits.org)
[](http://commitizen.github.io/cz-cli/)Simple "function call" parser.
Works browser side and server side.
Safe to use (no eval).
## Usage
```shell
npm i elenpi-simple-function-call-parser --save
``````javascript
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](http://opensource.org/licenses/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.