Skip to content

Commit

Permalink
Fix obtainting a new version implementation with anonymouse functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
petersirka committed Jan 17, 2018
1 parent d8642a5 commit 9540302
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builders.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const DEFAULT_SCHEMA = 'default';
const SKIP = { $$schema: true, $$result: true, $$callback: true, $$async: true, $$index: true, $$repository: true, $$can: true, $$controller: true };
const REGEXP_CLEAN_EMAIL = /\s/g;
const REGEXP_CLEAN_PHONE = /\s|\.|-|\(|\)/g;
const REGEXP_NEWOPERATION = /^function(\s)?\([a-zA-Z0-9$]+\)/;
const REGEXP_NEWOPERATION = /^function(\s)?\([a-zA-Z0-9$]+\)|^function anonymous\(\$/;
const hasOwnProperty = Object.prototype.hasOwnProperty;
const Qs = require('querystring');

Expand Down

0 comments on commit 9540302

Please sign in to comment.