Sha256: 162fc2e910c12791db835e7c741fca40320dfba416614850f6b14fc29958a615

Contents?: true

Size: 560 Bytes

Versions: 47

Compression:

Stored size: 560 Bytes

Contents

"use strict";

var validFunction = require("../valid-function");

var re1 = /^\s*function[\0-')-\uffff]*\(([\0-(*-\uffff]*)\)\s*\{([\0-\uffff]*)\}\s*$/
  , re2 = /^\s*\(?([\0-'*-\uffff]*)\)?\s*=>\s*(\{?[\0-\uffff]*\}?)\s*$/;

module.exports = function () {
	var str = String(validFunction(this)), data = str.match(re1);
	if (!data) {
		data = str.match(re2);
		if (!data) throw new Error("Unrecognized string format");
		data[1] = data[1].trim();
		if (data[2][0] === "{") data[2] = data[2].trim().slice(1, -1);
	}
	return { args: data[1], body: data[2] };
};

Version data entries

47 entries across 47 versions & 3 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-18.0.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.21.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.20.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.19.1 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.19.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.18.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.17.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.16.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.15.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.14.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.13.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.12.2 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.12.1 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.12.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.11.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.10.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.9.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.8.0 node_modules/es5-ext/function/#/to-string-tokens.js
govuk_publishing_components-17.7.0 node_modules/es5-ext/function/#/to-string-tokens.js