Skip to content

Function regex. Regular expression for matching function parts. Expose match groups for function name, arguments and function body.

License

Notifications You must be signed in to change notification settings

regexhq/function-regex

Repository files navigation

npm mit license build status coverage status deps status

Function regex. Regular expression for matching function parts. Expose match groups for function name, arguments and function body.

Install

npm install function-regex
npm test

Usage

For more use-cases see the tests

var functionRegex = require('function-regex');

var fixture = function testing(args, opts, dest, cb) {
  return cb ? {
    opts: [1,2,3]
  } : true;
};

fixture.toString().match(functionRegex());
//=> [1] = 'testing'
//=> [2] = 'args, opts, dest, cb'
//=> [3] = '\n    return cb ? {\n      opts: [1,2,3],\n      args: args\n    } : true;\n  '


'function(val, re) { return true; }'.match(functionRegex());
//=> [1] = ''
//=> [2] = 'val, re'
//=> [3] = ' return true; '

Matching groups

  • [0] full function ('function(val, re) { return true; }')
  • [1] function name ('testing')
  • [2] function arguments ('args, opts, dest, cb')
  • [3] function body (' return true; ')

Author

Charlike Mike Reagent

License MIT license

Copyright (c) 2014-2015 Charlike Mike Reagent, contributors.
Released under the MIT license.


Powered and automated by kdf, January 27, 2015

About

Function regex. Regular expression for matching function parts. Expose match groups for function name, arguments and function body.

Resources

License

Stars

Watchers

Forks

Packages

No packages published
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy