{"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"keywords":["regex","regexp","regular expression"],"dist-tags":{"latest":"0.8.0"},"author":{"name":"Brett Zamir"},"description":"Array extras for regular expressions","readme":"# regextras\n\nArray extras for regular expressions.\n\nAlso provides optional `String` and `RegExp` prototype extensions.\n\nNo more writing the implementation-detail-leaking, non-semantic, and\notherwise ugly:\n\n```js\nlet matches;\nwhile ((matches = regex.exec(str)) !== null) {\n  // Do something\n  if (condition) {\n    break;\n  }\n}\n```\n\nWhile all of the array extras could be useful, `some`, might be the most\ngeneral purpose as it (as with `every`) allows short-circuiting (breaking).\n\nThe following is equivalent to that above (though with `matches` as local):\n\n```js\nRegExtras(regex).some(str, (matches) => {\n  // Do something\n  if (condition) {\n    return true;\n  }\n  return false;\n});\n```\n\nAnd if the condition is at the end of the loop, just this:\n\n```js\nRegExtras(regex).some(str, (matches) => {\n  // Do something\n  return condition;\n});\n```\n\n## Installation\n\nNode:\n\n```js\nconst RegExtras = require('regextras');\n```\n\nModern browsers:\n\n```js\nimport {RegExtras} from './node_modules/regextras/dist/index-es.js';\n```\n\nOlder browsers:\n\n```html\n<script src=\"regextras/dist/index-umd.js\"></script>\n```\n\nThe prototype versions must be required or included separately.\n\nIf you need the generator methods, you should also add the following:\n\n```html\n<script src=\"regextras/dist/index-generators-umd.js\"></script>\n```\n\n## API\n\n### Constructor\n\n`new RegExtras(regex, flags, newLastIndex)`\n\nExample:\n\n```js\nconst piglatinArray = RegExtras(/\\w*w?ay/).reduce('ouyay areway illysay', function (arr, i, word) {\n  if (word.endsWith('way')) { arr.push(word.replace(/way$/, '')); } else { arr.push(word.slice(-3, -2) + word.slice(0, -3)); }\n  return arr;\n}, []);\n```\n\nAll arguments but the first are optional, and the first argument can be\nexpressed as a string.\n\nThe `new` keywords is not required.\n\n### Instance methods\n\nThese methods (and their callbacks) behave like the [array extra](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array#Iteration_methods)\nto which they correspond with exceptions detailed below.\n\n-   ***forEach(str, callback, thisObject)*** - Unlike the other extras, this\n    method returns the RegExtras object (to enable chaining).\n\n-   ***some(str, callback, thisObject)***\n\n-   ***every(str, callback, thisObject)***\n\n-   ***map(str, callback, thisObject)***\n\n-   ***filter(str, callback, thisObject)***\n\n-   ***reduce(str, cb, prev, thisObj)*** - Unlike the array extras, allows a\n    fourth argument to set an alternative value for `this` within the callback.\n\n-   ***reduceRight(str, cb, prev, thisObj)*** - Unlike the array extras,\n    allows a fourth argument to set an alternative value for `this` within\n    the callback.\n\n-   ***find(str, cb, thisObj)***\n\n-   ***findIndex(str, cb, thisObj)***\n\nAlso adds the following methods:\n\n-   ***findExec(str, cb, thisObj)*** - Operates like `find()` except that it\n    returns the `exec` result array (with `index` and `input` as well as\n    numeric properties as returned by [RegExp.prototype.exec](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp/exec)).\n\n-   ***filterExec(str, cb, thisObj)*** - Operates like `filter()` except that\n    the resulting array will contain the full `exec` results.\n\nIf you are using the Node version (or if, for the browser, you add the\n`index-generators.js` file and you are only supporting modern browsers), one\ncan use the following generator methods:\n\n-   ***values(str)*** - Returns an iterator with the array of matches (for each\n    `RegExp.prototype.exec` result)\n\n-   ***keys(str)*** - Returns an iterator with 0-based indexes (from\n    `RegExp.prototype.exec` result)\n\n-   ***entries(str)*** - Returns an iterator with an array containing the\n    key and the array of matches (for each `RegExp.prototype.exec` result)\n\n### Class methods\n\n-   ***mixinRegex(regex, newFlags='', newLastIndex=regex.lastIndex)*** -\n    Makes a copy of a regular expression.\n\n### Callbacks\n\nAll callbacks follow the signature:\n\n`cb(n1, n2..., i, n0);`\n\n...except for the `reduce` and `reduceRight` callbacks which follow:\n\n`cb(prev, n1, n2..., i, n0);`\n\n### Prototype versions\n\n`String` and `RegExp` versions of the above methods are also available.\n\nThe `RegExp` prototype version acts in the same way as `RegExtra` just\nwithout the need for a separate constructor call.\n\nThe `String` prototype version differs in that instead of the first argument\nbeing a string, it is the regular expression.\n\n## Todos\n\n1.  Could add [Array accessor methods](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array#Accessor_methods)\n    like `slice()`, with an additional supplied regular expression to gather\n    the `exec` results into an array.\n\n2.  Utilize `nodeunit` browser testing (and add `mixinRegex` tests)\n\n    1. Convert nodeunit tests to ES6 modules running through babel-register?;\n        streamline as sole set of tests, reconciling `test` with `tests` folder\n\n3.  Add generators for prototype versions\n","repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"license":"MIT","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"versions":{"0.1.0":{"name":"regextras","license":"MIT","author":{"name":"Brett Zamir"},"version":"0.1.0","title":"RegExtras","id":"regextras@brett.zamir","main":"lib/index","description":"Array extras for regular expressions","devDependencies":{"nodeunit":"0.x"},"gitHead":"ccad8f36ac0d205e327d9f944de00747095f0d6f","_id":"regextras@0.1.0","scripts":{},"_shasum":"67d1f37ad6f6a4e62b23d0c3b7baf79a946aad0c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"dist":{"shasum":"67d1f37ad6f6a4e62b23d0c3b7baf79a946aad0c","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.1.0.tgz","integrity":"sha512-qw325DaN7YczboqJXOQhbKzgkgfd/Hla/Bs7wUNLC5z1g3FpIvmNw35u6/+5hNWuuPKpaB/g67/RktFFqlsmVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBjNMlcJubUO9aahDdLPOANn6XPgp0pbNN6zS7CK8m+WAiBtHIUav/Ugj5OuXuElxlC5iOhgmjB77zXTPE5mcw4U6A=="}]},"directories":{}},"0.1.1":{"name":"regextras","license":"MIT","author":{"name":"Brett Zamir"},"version":"0.1.1","title":"RegExtras","id":"regextras@brett.zamir","main":"lib/index","description":"Array extras for regular expressions","devDependencies":{"nodeunit":"0.x"},"gitHead":"71d0f3de85339ed18f6c76b1f5b61d7eefda512c","_id":"regextras@0.1.1","scripts":{},"_shasum":"bd6ba01635f104ec55556fcd54650dd968d44569","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"dist":{"shasum":"bd6ba01635f104ec55556fcd54650dd968d44569","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.1.1.tgz","integrity":"sha512-olwPhk6lWovd9nlKBbrnZDbI93Lkf6acZlM8X944kv5VEtuRNDL9XMXxfLac83bKKqeN7AQod1i3Ta803G418w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGJI+fzuS4Awoef2KXBsnlcLBSs/PNwwmtmaHZuJPTDlAiB6hzftMv2Pk7lidGTvZFl+YCp7Vv4Jrk86/tHyFrJVnA=="}]},"directories":{}},"0.2.0":{"name":"regextras","license":"MIT","author":{"name":"Brett Zamir"},"contributors":[],"repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"homepage":"https://github.com/brettz9/regextras","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"scripts":{},"version":"0.2.0","title":"RegExtras","id":"regextras@brett.zamir","main":"lib/main","keywords":["regex","regexp","regular expression"],"description":"Array extras for regular expressions","engines":{},"dependencies":{},"devDependencies":{"nodeunit":"0.x"},"gitHead":"bbec799ca44ded43e6d0aac7cfffc9748cdb3da5","_id":"regextras@0.2.0","_shasum":"44dd31611966c2c03c616a95d5d33263f3c681cd","_from":".","_npmVersion":"3.8.1","_nodeVersion":"4.3.0","_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"dist":{"shasum":"44dd31611966c2c03c616a95d5d33263f3c681cd","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.2.0.tgz","integrity":"sha512-uEKxrQkGHY1NjgvjaucZDzSxyAauUgegfQCrki42H+bUONzUh/w9kYrOG41xJWL1o3gM5Gs8Gw9ye4KOupbUzg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGpSn1NNZFMo4e9eimOdm5TNU3Ere93MrowbPRfhZyQOAiAK9wKWiQq55c+wiNsW+d4pj0YaHHKen7xEP7sH3RmNwQ=="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/regextras-0.2.0.tgz_1460355771564_0.8297107194084674"},"directories":{}},"0.2.1":{"name":"regextras","license":"MIT","author":{"name":"Brett Zamir"},"contributors":[],"repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"homepage":"https://github.com/brettz9/regextras","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"scripts":{"test":"nodeunit test"},"version":"0.2.1","title":"RegExtras","id":"regextras@brett.zamir","main":"lib/main","keywords":["regex","regexp","regular expression"],"description":"Array extras for regular expressions","engines":{},"dependencies":{},"devDependencies":{"nodeunit":"0.x"},"gitHead":"6a2f0f47ec68a5714381efcfe61a6e27b1b06513","_id":"regextras@0.2.1","_shasum":"7e0a3d50a2e4c126d6c036d3d8f30ff669bb89b4","_from":".","_npmVersion":"3.8.1","_nodeVersion":"4.3.0","_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"dist":{"shasum":"7e0a3d50a2e4c126d6c036d3d8f30ff669bb89b4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.2.1.tgz","integrity":"sha512-DTyR0I2kgvjlFDYPzKITIOo9fg8N92EDJTatYAx6CpUexCaWFgd+taRUWCkPcgEpf6MoticSOIJlTH3APtrbDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2wXEEHCG/pRzChsikuIUGc10eMbZPWtTfJFgLU4v64QIhALIUjbSePnkMJ7p7p8WEInNdnLxcdfKgEUcKPRlVP1km"}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/regextras-0.2.1.tgz_1460357077103_0.19523086003027856"},"directories":{}},"0.3.0":{"name":"regextras","license":"MIT","author":{"name":"Brett Zamir"},"contributors":[],"repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"homepage":"https://github.com/brettz9/regextras","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"scripts":{"eslint":"eslint .","rollup":"rollup -c","test":"nodeunit test","test-browser":"npm run eslint && npm run rollup && opn http://127.0.0.1:8081/tests/regextras.html && static -p 8081"},"version":"0.3.0","id":"regextras@brett.zamir","main":"dist/index-umd.js","module":"dist/index-es.js","keywords":["regex","regexp","regular expression"],"description":"Array extras for regular expressions","engines":{"node":"*"},"dependencies":{},"devDependencies":{"babel-core":"^6.26.0","eslint":"4.19.1","eslint-config-standard":"11.0.0","eslint-plugin-import":"2.11.0","eslint-plugin-node":"6.0.1","eslint-plugin-promise":"3.7.0","eslint-plugin-standard":"3.0.1","node-static":"^0.7.10","nodeunit":"0.11.2","opn-cli":"^3.1.0","remark-lint":"6.0.1","rollup":"0.58.2","rollup-plugin-babel":"^3.0.4","rollup-plugin-uglify":"^3.0.0","uglify-es":"^3.3.9"},"gitHead":"e17cad3ee63f6542af9600d495621afc198a2001","_id":"regextras@0.3.0","_npmVersion":"5.8.0","_nodeVersion":"9.2.1","_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"dist":{"integrity":"sha512-j7PFcBzmkECj7ubsFWsEuEHSrELsK69oA552TyeFbHO3VMKAo0ninDwm9M5fSatZqJA9Ts/OGSCwi1OyF3DOrg==","shasum":"d12faea907495f6f043fdb3537ff9bd39af6ee52","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.3.0.tgz","fileCount":26,"unpackedSize":89070,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3z2vCRA9TVsSAnZWagAAHuUQAIr69FXXbrp660VlQVHh\nGr3VUxluuV39cT7Z3lTdrrs4q7Xd9h2kt3f3vY2sf+6R1PHjN+Zc2Gmvp6ns\nSj0tHa7bkhcjgZ3DJCKOqnALMYdsSszo7E3kFZqFl4gbVt1mk4VOPVFPx2h7\nwA5QOwur+riHP1YdNSoUFtL6nOYm35yDRXi5JCtFsMvYK0ZVharh4knpNAyf\n70QZ1ORoZQxtxrj1eEGMYe21RhNIGx883IxhDvdwy3IrmgZ7IB5q09x5Sarp\npVvqx4WYNkKZbwMtpUIrFHRNcO35zTOSDPPbGO6kHnA91pN5HI3uifaiAfkI\nWDQw8wvYYgXr8k/9Kc6QvHG43ZzjAfWKLjDUAqRAtoYpmxcnVZ0ASOJAt5qK\nxf+BR7RRgYPPmVxe5PGzdxy+dyPxCz3vWlQSGm08C+0wfODB+1IUSl9919zj\naRYSiI0y609YgPGIuzAvgejMFPvqpU+DnDFWinb3tUtKAK9VfpZsjdRJ36Jz\n8GEMx0OfJnhXS+BlJi0HcCuKLMg6bCdC79ynaOiWwH8mbDsTXO5SjjcSxtSw\ncf1qUYxUQhgknE4jJl2fVK+m0P7FGE0CcpznqTnN+ExWjV6BHEmustKBFTL7\ni0sYtNHwlrOCmPck8lOYPym3rApS3XawjIWQxk2JvTJa8azVSCZlA/w9H7/B\nFSzy\r\n=682f\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAwMPcXfgg5xoQTyLLSFYLvKd/eI8f3C682+k4J1zLb7AiAuomEZP5U4zF1FBEH7Ws77KRHkpk6jFcQdtzQnN0xuhg=="}]},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regextras_0.3.0_1524579758824_0.2340671148340463"},"_hasShrinkwrap":false},"0.4.0":{"name":"regextras","version":"0.4.0","license":"MIT","author":{"name":"Brett Zamir"},"contributors":[],"repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"homepage":"https://github.com/brettz9/regextras","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"scripts":{"eslint":"eslint .","rollup":"rollup -c","nodeunit":"nodeunit test","test":"npm run eslint && npm run rollup && npm run nodeunit","test-browser":"npm run eslint && npm run rollup && opn http://127.0.0.1:8081/tests/regextras.html && static -p 8081"},"id":"regextras@brett.zamir","main":"dist/index-umd.js","module":"dist/index-es.js","keywords":["regex","regexp","regular expression"],"description":"Array extras for regular expressions","engines":{"node":"*"},"dependencies":{},"devDependencies":{"babel-core":"^6.26.0","eslint":"4.19.1","eslint-config-standard":"11.0.0","eslint-plugin-import":"2.11.0","eslint-plugin-node":"6.0.1","eslint-plugin-promise":"3.7.0","eslint-plugin-standard":"3.1.0","node-static":"^0.7.10","nodeunit":"0.11.2","opn-cli":"^3.1.0","remark-lint":"6.0.1","rollup":"0.58.2","rollup-plugin-babel":"^3.0.4","rollup-plugin-uglify":"^3.0.0","uglify-es":"^3.3.9"},"gitHead":"7b32e57b7c9e944b6e5c529ece708633ed901ab3","_id":"regextras@0.4.0","_npmVersion":"5.8.0","_nodeVersion":"9.2.1","_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"dist":{"integrity":"sha512-neoPryTGqwtVuCznXy7jcG7n1C4EEXWGMBSP+Dys8mG1sA0jTA7Ux55rlaKckEor4WyixEUwujrQib0jPDHSaA==","shasum":"b5940259a80f708f5d94150b2b251895a10fd979","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.4.0.tgz","fileCount":26,"unpackedSize":91299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4DeUCRA9TVsSAnZWagAABpwP/3iRyq+INpQF6h+HF/xx\nRv39N5/xCKjL71UvhQDxJ0mb+tNfsr1Tfn0m2UK5Zx2qYgPVonvIkoilaggN\niy039iHBpxOLgHvJOWYEEpKiJyJgQC47fRd5iSH7qug+plMqgPmqGJWlUECd\nF9s2h8FaBxOEiwXGMP+x62iF5ILAy/NMcq3/tLqWpS1R86WcfmSVkNuksdtG\nkpUWfiOODr7X7+Ffs50OncyVRjkEDdnKnCvuHpVkBeoBRyFa50XeKzIrN5KH\nJW6mCnfzakEJdIQTFwpay5jkygXdpAk1iaCeRsRuadiEGnE8GA4FdItt58VC\nhhmf5GsyWWmqMte0ckMBrwKBxluYq8dlzP7Ra2OZcz1yfk9Kd+EAuFSk1dst\n+sGSD1CTddmB8zBN+OYHr2Uf7GbU0SKvfrvOOyEjuDftU9prAc+EeWV4KNl6\nRXo7CQmcaGb8OWtBDe0N24Q1uHkHrUj0iSoLUpPi5lVrT8FeD7ZwhXf+1bbT\n3G4mCDaDnfgmSl5pjNuGw5TcIrbdoFzatZ2aNDlzHaNG4taHpYDwHPZXcIW/\nCBR/6+0zG6ZSk1TnpYv2Bh0WNWPnYpRm4qmAIG6LSfZiB9KPIw5uYLPzAu0w\nbJvFgLKhq2BfxJAavWbO6mQB90TEfpxY9cjLEhsZqVLrRDTEt+JXTPwz2f/v\nE0RO\r\n=Gp7s\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNbQKR4xV1Eu71VsEhIqARKFIHfIDF615sX0LCa4WmhAIgXWbK8ih3TgKzuTxt9uagpHwDqdRoURYPogifiOOUSLc="}]},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regextras_0.4.0_1524643730543_0.8715478781394328"},"_hasShrinkwrap":false},"0.5.0":{"name":"regextras","version":"0.5.0","license":"MIT","author":{"name":"Brett Zamir"},"contributors":[],"repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"homepage":"https://github.com/brettz9/regextras","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"scripts":{"eslint":"eslint .","rollup":"rollup -c","mocha":"mocha --require test/node-env.js test/test.*.js","test":"npm run eslint && npm run rollup && npm run mocha","test-browser":"npm run eslint && npm run rollup && open-cli http://127.0.0.1:8081/tests/regextras.html && static -p 8081"},"browserslist":["cover 100%"],"main":"dist/index-umd.js","module":"dist/index-es.js","keywords":["regex","regexp","regular expression"],"description":"Array extras for regular expressions","engines":{"node":"*"},"peerDependencies":{"core-js-bundle":"^3.1.3","regenerator-runtime":"^0.13.2"},"dependencies":{},"devDependencies":{"@babel/core":"^7.4.5","@babel/preset-env":"^7.4.5","chai":"^4.2.0","core-js-bundle":"^3.1.3","eslint":"5.16.0","eslint-config-standard":"12.0.0","eslint-plugin-import":"2.17.3","eslint-plugin-node":"9.1.0","eslint-plugin-promise":"4.1.1","eslint-plugin-standard":"4.0.0","mocha":"^6.1.4","node-static":"^0.7.11","open-cli":"^5.0.0","regenerator-runtime":"^0.13.2","remark-lint":"6.0.4","rollup":"1.13.1","rollup-plugin-babel":"^4.3.2","rollup-plugin-terser":"^5.0.0"},"gitHead":"1cbbb1c2bfc7ca379c57ce1dc02f94c8b7130d87","_id":"regextras@0.5.0","_nodeVersion":"10.11.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-1+iU/qamxslqJ8vtLw0Hy7pjH1upVk/IG8IenN1yDLHmKKv2S+o44ndxzwYZsnXoLvXrRDAAv5CM6P4uiF8kfA==","shasum":"f5cb0120c2dfa02e273e1e57e996d011121d70a9","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.5.0.tgz","fileCount":28,"unpackedSize":115129,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9cNYCRA9TVsSAnZWagAAF/IP/36d+4F9GU4kUXdz55hB\nfbQX/2qVy2V7S82MaaRyWEgP1xI3onDkY1bA1Agt7/ixSF7zUkPR7mgVcXsL\ndOJ4jlEISjsO+VNzgWyvixLVJlvO07oHW6/VqkmUECRcbmh3E3AgNf+aZl6s\nj93LezrmXimdw8m7ZHTr/IpPmFBZiLIgiJgeqinEOlQn+A8MVqyWRbR+Hl7g\nvkC5K5I4L3wWFRd1nf9KNa50d/OzDA12bKlO1vpJM2eWG2X9OjplfAdmjbYP\n8tfbGMikG7SHo2ztwLjaVYju61mietxLmIKF1yp+OlXc024g204CxTej5GEV\nyEXyv7CW4+qhsf7NkRIxPCvuZ+mYoVOT5fmHCVA4Yp83EzMlsbjnmBX8MGzQ\n2aDawGYHv3qSjo9RMYsiLELDQKU7IbqzcKtvDkSt3+UdRgCL9lLCRwIcUAJR\nmcT297Dl249ZgUyaY8Iygm9C4c7Erib0oCbzzKbRECW0JMZR9TyLVymQnWYJ\njCQerPyvSRc7S/at+XbsmEkB+W+yckSDkBnINOlniP+/FF6AVcLz70J1APZi\nGbI7kfjgJSB+zD+WKF2eS/ctcp+5fqUaeLFyJRhj3Pkz8k5wvmrjzk8Rqyq2\nhm9EoKH+ii+w9tQ2CGQgUmua57XOu20/LEWs1INdQwKe5Vee0U37sm1u0S8z\n+Ozs\r\n=T3Ix\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBecZipei+0+Zz9hE/eY3+d8tRBoP8OmPkVx7q3w0KN1AiEArSMvMi5YQ7o+2zl0LqadbLRpevyKfdI4xDndE20sNtU="}]},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regextras_0.5.0_1559610199413_0.15525107534220894"},"_hasShrinkwrap":false},"0.6.0":{"name":"regextras","version":"0.6.0","license":"MIT","author":{"name":"Brett Zamir"},"contributors":[],"repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"homepage":"https://github.com/brettz9/regextras","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"scripts":{"eslint":"eslint .","rollup":"rollup -c","mocha":"mocha --require test/node-env.js test/test.*.js","test":"npm run eslint && npm run rollup && npm run mocha","test-browser":"npm run eslint && npm run rollup && open-cli http://127.0.0.1:8081/tests/regextras.html && static -p 8081"},"browserslist":["cover 100%"],"main":"dist/index-umd.js","module":"dist/index-es.js","keywords":["regex","regexp","regular expression"],"description":"Array extras for regular expressions","engines":{"node":"*"},"peerDependencies":{"core-js-bundle":"^3.1.4","regenerator-runtime":"^0.13.2"},"dependencies":{},"devDependencies":{"@babel/core":"^7.5.0","@babel/preset-env":"^7.5.2","@mysticatea/eslint-plugin":"^11.0.0","chai":"^4.2.0","core-js-bundle":"^3.1.4","eslint":"^6.0.1","eslint-config-ash-nazg":"^8.2.0","eslint-config-standard":"^12.0.0","eslint-plugin-array-func":"^3.1.3","eslint-plugin-compat":"^3.2.0","eslint-plugin-eslint-comments":"^3.1.2","eslint-plugin-html":"^6.0.0","eslint-plugin-import":"^2.18.0","eslint-plugin-jsdoc":"^15.3.0","eslint-plugin-markdown":"^1.0.0","eslint-plugin-no-use-extend-native":"^0.4.1","eslint-plugin-node":"^9.1.0","eslint-plugin-promise":"^4.2.1","eslint-plugin-sonarjs":"^0.4.0","eslint-plugin-standard":"^4.0.0","eslint-plugin-unicorn":"^9.1.1","mocha":"^6.1.4","node-static":"^0.7.11","open-cli":"^5.0.0","regenerator-runtime":"^0.13.2","remark-lint":"6.0.5","rollup":"1.16.6","rollup-plugin-babel":"^4.3.3","rollup-plugin-terser":"^5.1.1","typescript":"^3.5.3"},"gitHead":"930e1f382c16e30dc43cffc73059bbcea16405e6","_id":"regextras@0.6.0","_nodeVersion":"10.11.0","_npmVersion":"6.10.0","dist":{"integrity":"sha512-K6v5bGSKABufGKwiDdQ1AV2V586TZcXlAkVYn7WjQBJpfC6SmheJaYp5H8NWGgX+bicfqaVd9/4kCia/BF9uXQ==","shasum":"330b2e35924dd5c79d8db662650cafa7fc4b6082","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.6.0.tgz","fileCount":30,"unpackedSize":129169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJAKxCRA9TVsSAnZWagAASG0P+QCol0d+pHECtQyigI+t\nhGaMjhz4CYGJVMt7QKaGXeNoW6GIt57Tt80R2WkXRxuHYksBuA3BXDmehZ3U\nOGVE2lwMhYYlTrD0UHx+nN6Bdr4LirfzZ1jKT0PMFdQaoTXZsDr2spRwRJCp\nRvewGNkBbB/BaridqKf3k82PyrJz1m9GQ7CxnWNvt+qaQNvagJuse9qRfawh\nwssMWB4aQSmH3ikBrEBORZ8a6fX8YhR15mj09DBkn/cj/KbcFE8O7N1L76nX\nltCxrDm1RX2kySGYTID25/k8NT0Lms4//heI3aotEhKL8lhfKJOwgiLl+Ux/\npcfC4RmC36s5Izv/o0FqUbtYFHEoup61vAqNOCjz8xhJAcJhaZETBLrVsQIt\nH2YOsEIuReQ3vUSyGj54zgIXc7KIN3nkLNHS85mF2f4Z1cn636K3JtoN6+O0\n92mHXwyntHv4ZwS/TGnxd4YJ3RPjh1JvBBMgQcJdUduJhOuDueLF6Y5u8cR4\noqV0KjN63hG7i1WnL5Bn+isiWKiFlNXBiwkRG4lqlum+jS+8zPDtrd8LEGa7\n/jMRJa6tckybZZB9Cz+LndMoPIZk6l/sPb3KOjgZPd7Rsf5zD3VHc9+/r5jb\nnq/jrky8OpLUUPV+nR9KPbNi6e7IhU2rgHsGcUsgnFcwCJg12uB8HcOqBGEU\nSUM2\r\n=1bX/\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGBAccEI4KEbhRdx15RJRbqgsIm6z/195W7iIgcl+kM1AiEAlzsekxD+zbhyfPDSRLNqrk2FosBeP1SzLbkIdsKtAy8="}]},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regextras_0.6.0_1562641072600_0.43285156131842806"},"_hasShrinkwrap":false},"0.6.1":{"name":"regextras","version":"0.6.1","license":"MIT","author":{"name":"Brett Zamir"},"contributors":[],"repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"homepage":"https://github.com/brettz9/regextras","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"scripts":{"eslint":"eslint .","rollup":"rollup -c","mocha":"mocha --require test/node-env.js test/test.*.js","test":"npm run eslint && npm run rollup && npm run mocha","test-browser":"npm run eslint && npm run rollup && open-cli http://127.0.0.1:8081/tests/regextras.html && static -p 8081"},"browserslist":["cover 100%"],"main":"dist/index-umd.js","module":"dist/index-es.js","keywords":["regex","regexp","regular expression"],"description":"Array extras for regular expressions","engines":{"node":"*"},"dependencies":{},"devDependencies":{"@babel/core":"^7.5.0","@babel/preset-env":"^7.5.2","@mysticatea/eslint-plugin":"^11.0.0","chai":"^4.2.0","core-js-bundle":"^3.1.4","eslint":"^6.0.1","eslint-config-ash-nazg":"^8.2.0","eslint-config-standard":"^12.0.0","eslint-plugin-array-func":"^3.1.3","eslint-plugin-compat":"^3.2.0","eslint-plugin-eslint-comments":"^3.1.2","eslint-plugin-html":"^6.0.0","eslint-plugin-import":"^2.18.0","eslint-plugin-jsdoc":"^15.3.0","eslint-plugin-markdown":"^1.0.0","eslint-plugin-no-use-extend-native":"^0.4.1","eslint-plugin-node":"^9.1.0","eslint-plugin-promise":"^4.2.1","eslint-plugin-sonarjs":"^0.4.0","eslint-plugin-standard":"^4.0.0","eslint-plugin-unicorn":"^9.1.1","mocha":"^6.1.4","node-static":"^0.7.11","open-cli":"^5.0.0","regenerator-runtime":"^0.13.2","remark-lint":"6.0.5","rollup":"1.16.6","rollup-plugin-babel":"^4.3.3","rollup-plugin-terser":"^5.1.1","typescript":"^3.5.3"},"gitHead":"e0dd9edbb3b8442d93556ad9e8967bdd0408b7a5","_id":"regextras@0.6.1","_nodeVersion":"10.11.0","_npmVersion":"6.10.0","dist":{"integrity":"sha512-EzIHww9xV2Kpqx+corS/I7OBmf2rZ0pKKJPsw5Dc+l6Zq1TslDmtRIP9maVn3UH+72MIXmn8zzDgP07ihQogUA==","shasum":"9689641bbb338e0ff7001a5c507c6a2008df7b36","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.6.1.tgz","fileCount":30,"unpackedSize":129124,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJBqSCRA9TVsSAnZWagAA6/YP/RVY+y4qg2dYRntb8V4p\n9WL82zVNO/+NuzMCBZ5715Cjjv/CtDlBWkeZdt+fvFX+v1/hZOZr7b8rWaht\nNA92iVcAfaigVAteeNQ5I6zLl1WxnjY9e/5CPcTDaq+zqExi6cbi+ubUCydT\nXpEBML3HKTAf/l0fNPMdR8eHpAGxpgsnefd0tyPRR4NN/F3sAjGy8uMkNqLw\nkOsGImCu71bIXfwL8LJUMRKOijHKzmMwdgTB1LOOkqWi5gJX8rEywqIQ46E5\nrPBoGpAcjHTX1bGofMDPM0KjkRBf51kEuuV8+22Lyn62QhZqGwqOyBoEvh7y\nxv+ZTgxrp53+nynoOr7vE1VNCLF8WnNtDNbuPkQzPy4+W1cq5CEcyXWVr97u\nonOnumMg4vM6tarZ85wkE7VsiGX8wB+lKidKM2DCqvvmBkfuFmIypoZPA0Ib\n9joC/7UvCegz3nVo0h4RbQfjwrHMpJwvI+65ysVns2KrHQa0kODlBfzfaw1b\ntZBK5gGAO7CtlWjcEXSZxw9yOae0E5vdO2Lob1ZUKHjq0mcPzgcUSaQ1Pyow\nCLGncHAHC9FLuCtP/kiUcQobxFRWkpySQaqBW4BOHTPQQ8NfRGN7efK3d9Ii\n7b1rNDXw4q9pWKnj+QbhQeMEe4sX3Ptbr3qSAB6AWHJky1lmCY7mLcxCFrwm\nIktg\r\n=mMzW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA/NG+2rA8+VSaXlJefOtvlkl9WhNjMPt88oFnhDJfLnAiAFY8nqNGpmRp/6fDiVteLpGGeRMT/xZxrO44oNMEwqHw=="}]},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regextras_0.6.1_1562647185712_0.33150187229946826"},"_hasShrinkwrap":false},"0.7.0":{"name":"regextras","version":"0.7.0","license":"MIT","author":{"name":"Brett Zamir"},"contributors":[],"repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"homepage":"https://github.com/brettz9/regextras","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"scripts":{"eslint":"eslint --ext=js,md,html .","rollup":"rollup -c","start":"static -p 8081","coverage":"open-cli http://localhost:8081/coverage && npm start","mocha":"mocha --require esm --require test/node-env.js test/test.*.js --exit","mocha-cov":"nyc npm run mocha","test-cov":"npm run eslint && npm run rollup && npm run mocha-cov","test":"npm run eslint && npm run rollup && npm run mocha","test-browser":"npm run eslint && npm run rollup && open-cli http://127.0.0.1:8081/tests/regextras.html && npm start"},"nyc":{"reporter":["html","text"],"exclude":[".eslintrc.js","rollup.config.js","dist","node_modules","test","tests"]},"browserslist":["cover 100%"],"main":"dist/index-umd.js","module":"dist/index-es.js","keywords":["regex","regexp","regular expression"],"description":"Array extras for regular expressions","engines":{"node":">=0.1.14"},"dependencies":{},"devDependencies":{"@babel/core":"^7.7.5","@babel/preset-env":"^7.7.6","@mysticatea/eslint-plugin":"^13.0.0","chai":"^4.2.0","core-js-bundle":"^3.5.0","eslint":"^6.7.2","eslint-config-ash-nazg":"^13.1.0","eslint-config-standard":"^14.1.0","eslint-plugin-array-func":"^3.1.3","eslint-plugin-chai-expect":"^2.1.0","eslint-plugin-chai-friendly":"^0.5.0","eslint-plugin-compat":"^3.3.0","eslint-plugin-eslint-comments":"^3.1.2","eslint-plugin-html":"^6.0.0","eslint-plugin-import":"^2.19.1","eslint-plugin-jsdoc":"^18.4.3","eslint-plugin-markdown":"^1.0.1","eslint-plugin-no-use-extend-native":"^0.4.1","eslint-plugin-node":"^10.0.0","eslint-plugin-promise":"^4.2.1","eslint-plugin-sonarjs":"^0.5.0","eslint-plugin-standard":"^4.0.1","eslint-plugin-unicorn":"^14.0.1","esm":"^3.2.25","mocha":"^6.2.2","node-static":"^0.7.11","nyc":"^14.1.1","open-cli":"^5.0.0","regenerator-runtime":"^0.13.3","remark-lint":"6.0.5","rollup":"1.27.13","rollup-plugin-babel":"^4.3.3","rollup-plugin-terser":"^5.1.3","typescript":"^3.7.3"},"gitHead":"7885a7991f8e0ab4c354341b52479c5363de7214","_id":"regextras@0.7.0","_nodeVersion":"10.16.3","_npmVersion":"6.13.4","dist":{"integrity":"sha512-ds+fL+Vhl918gbAUb0k2gVKbTZLsg84Re3DI6p85Et0U0tYME3hyW4nMK8Px4dtDaBA2qNjvG5uWyW7eK5gfmw==","shasum":"2298bef8cfb92b1b7e3b9b12aa8f69547b7d71e4","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.7.0.tgz","fileCount":31,"unpackedSize":127799,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+MY3CRA9TVsSAnZWagAAEk8P/15JWaxz4CEuf804aoQR\npIKHDXDYvV0UB9kyTwOUB1iZjPIV3gdVF3l8ldZ7jzVqnWlsXor0h75oDa0d\n2fp6ToUYwjEhKZ4Helcm+MRV3iywEiCfYLxRHy2I/TF5kFSa9kQRoI7JFNtV\nINy40TTEXD5KzEeKNvpAmsexfDeFms4zMyFl63tzfHh4Blqvo0ISC96HN/HH\n3D4eY7N4eJ/Bt3G+zryd51Ug7uZQRpvxJM9tz+gIiUE8i5yKV6FxNG5fyzJn\n+qq0F6CF2OpdOz9uysOIsnHphzHPx95xjsxJO5MKs4WtldlaKO9ikCmnc1Gy\nJaUlIObWrfxVcKjPfMEvR6BKG7ib1O0E097Hhv9H9yiOusB8oHFptskXG4DV\nRwT1VEGFASBUBCUoHnuqsZJ4c9WbCPrw/OowLVgexSuWYi3TvKDBUj1XHouS\n14EM2jBvYcJz5yPP6xyGxhrkfeBHOvcSK4p5uqmD9fFOhiqZgy2eEdMSADMI\nkk1kEFv4doDnnajrTeoXC58O1WE9KQhTHl+qySMfw0EHTR+9VEijaQs5Cwa0\n374iqs7NcTISZ5rnn4GRA3+ZDRutUe1hxluL8ZCTgq/WTuJO5gu9jeVI25OG\nGlihoGKSel0/l3aZFRrNUFCIFkF6/dPvAsDddkieeGiA+EBO6hWDD5ThLuLA\ndefT\r\n=pqzK\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD++kSmQ/+tRxSU7FJ1wpnQDRmFHECJCHOIyst8Gpv+2AIhAJZN3a01588mYvJ+z8Rs87Bhds4bB8QQR2QAbw9hRXW4"}]},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regextras_0.7.0_1576584759242_0.40533279196153704"},"_hasShrinkwrap":false},"0.7.1":{"name":"regextras","version":"0.7.1","license":"MIT","author":{"name":"Brett Zamir"},"contributors":[],"repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"homepage":"https://github.com/brettz9/regextras","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"scripts":{"eslint":"eslint --ext=js,md,html .","rollup":"rollup -c","start":"static -p 8081","coverage":"open-cli http://localhost:8081/coverage && npm start","mocha":"mocha --require esm --require test/node-env.js test/test.*.js --exit","mocha-cov":"nyc npm run mocha","test-cov":"npm run eslint && npm run rollup && npm run mocha-cov","test":"npm run eslint && npm run rollup && npm run mocha","test-browser":"npm run eslint && npm run rollup && open-cli http://127.0.0.1:8081/tests/regextras.html && npm start"},"nyc":{"reporter":["html","text"],"exclude":[".eslintrc.js","rollup.config.js","dist","node_modules","test","tests"]},"browserslist":["cover 100%"],"main":"dist/index-umd.js","module":"dist/index-es.js","keywords":["regex","regexp","regular expression"],"description":"Array extras for regular expressions","engines":{"node":">=0.1.14"},"dependencies":{},"devDependencies":{"@babel/core":"^7.9.6","@babel/preset-env":"^7.9.6","@mysticatea/eslint-plugin":"^13.0.0","@rollup/plugin-babel":"^5.0.0","chai":"^4.2.0","core-js-bundle":"^3.6.5","eslint":"^7.0.0","eslint-config-ash-nazg":"^21.0.0","eslint-config-standard":"^14.1.1","eslint-plugin-array-func":"^3.1.5","eslint-plugin-chai-expect":"^2.1.0","eslint-plugin-chai-friendly":"^0.6.0","eslint-plugin-compat":"^3.5.1","eslint-plugin-eslint-comments":"^3.1.2","eslint-plugin-html":"^6.0.2","eslint-plugin-import":"^2.20.2","eslint-plugin-jsdoc":"^25.0.1","eslint-plugin-markdown":"^1.0.2","eslint-plugin-no-use-extend-native":"^0.5.0","eslint-plugin-node":"^11.1.0","eslint-plugin-promise":"^4.2.1","eslint-plugin-sonarjs":"^0.5.0","eslint-plugin-standard":"^4.0.1","eslint-plugin-unicorn":"^19.0.1","esm":"^3.2.25","mocha":"^7.1.2","node-static":"^0.7.11","nyc":"^15.0.1","open-cli":"^6.0.1","regenerator-runtime":"^0.13.5","remark-lint":"7.0.0","rollup":"2.8.2","rollup-plugin-terser":"^5.3.0","typescript":"^3.8.3"},"gitHead":"aef3e6ee7add1740e8491f6c2536df4e6c5f6340","_id":"regextras@0.7.1","_nodeVersion":"12.16.2","_npmVersion":"6.14.5","dist":{"integrity":"sha512-9YXf6xtW+qzQ+hcMQXx95MOvfqXFgsKDZodX3qZB0x2n5Z94ioetIITsBtvJbiOyxa/6s9AtyweBLCdPmPko/w==","shasum":"be95719d5f43f9ef0b9fa07ad89b7c606995a3b2","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.7.1.tgz","fileCount":31,"unpackedSize":128783,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuBBLCRA9TVsSAnZWagAAuakP/2MClxI1Uz/r1O4es+aU\nT7YTHLsdSOqVBpTwVDzZDdXfq6Y1gXJGdjHNj2zkjAT5jIepzQvSAka/lXn5\nuGWxmwAIum9yespX6GwoSJ2MrifK5OWdnSC2ex1SQtOW7t4Ac3lxs1xNTx5X\nGHE3kUnKaiHXXQE81cLqdMmQ2R1JgukKY8QvuypWDFHWxKqxB9e5OJ3FwUXN\n1pV7Va5PT8o7qbMSL88i1ENIQIIsaeURikzY7PdrBT6KAAR0sIW3+bGc4R0e\ngaXhdWYwv/Cg3OekmuhQXVUgbRpqNUupW283zLY+HrtmCFcF0BmEX4G/oMnN\nMgFFQCnm/B8tJGM120xSpQYHJqi6Kg+2dgyCrd/eG0VfoIC4/1yi+Xd9qyrs\nd71QLmoRcu9t7uUUg2oDK1LbDhrP2k2vYhQVLenp9AJDSXDCxpbyomcD/HHs\nsEcoxUlzUxvYuIE+BN6JhQCT7SpiuMcFexHfxoreoy1WM1eHxS0JG+RvC6Ys\nSxRljPJ+ufJSyTyK8AH2uetM8dLluqoP+yR1TaDZ/MeaNvX53+AQUbAk1NOc\nxXJK5MMyPSngYznJkLJxmx1gxNrcTwF8mP7gFRFpipLd2QTR2z3F8FZVpTMK\nMiBvMN32byIP+g0IDM+7liHf5is8TqTX9cs/XxzjHx+5BhXTnot5yf2ENGX5\nf+/1\r\n=ad0E\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDx4QuSCMS0HMGBfEwJiY6ZH+jSitAH9mXynrdB1mdWjAIhAOspqtxZdmAfustrx/gw+9kTgBE3I7AylZ1rzRzYEiz4"}]},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regextras_0.7.1_1589121098659_0.2875793092685037"},"_hasShrinkwrap":false},"0.8.0":{"name":"regextras","version":"0.8.0","license":"MIT","author":{"name":"Brett Zamir"},"contributors":[],"repository":{"type":"git","url":"git+https://github.com/brettz9/regextras.git"},"homepage":"https://github.com/brettz9/regextras","bugs":{"url":"https://github.com/brettz9/regextras/issues"},"scripts":{"eslint":"eslint --ext=js,md,html .","lint":"npm run eslint","rollup":"rollup -c","start":"static -p 8081","coverage":"open-cli http://localhost:8081/coverage && npm start","mocha":"mocha --require esm --require chai/register-assert --require chai/register-expect test/test.*.js --exit","nyc":"rm -Rf ./node_modules/.cache && nyc npm run mocha","test":"npm run eslint && npm run rollup && npm run nyc","test-browser":"npm run eslint && npm run rollup && open-cli http://127.0.0.1:8081/tests/regextras.html && npm start"},"nyc":{"reporter":["html","text"],"exclude":[".eslintrc.js","rollup.config.js","dist","node_modules","test","tests"]},"browserslist":["cover 100%"],"main":"dist/index-umd.js","module":"dist/index-es.js","keywords":["regex","regexp","regular expression"],"description":"Array extras for regular expressions","engines":{"node":">=0.1.14"},"dependencies":{},"devDependencies":{"@babel/core":"^7.14.3","@babel/preset-env":"^7.14.2","@brettz9/eslint-plugin":"^1.0.3","@brettz9/node-static":"^0.1.1","@rollup/plugin-babel":"^5.3.0","chai":"^4.3.4","core-js-bundle":"^3.12.1","eslint":"^7.27.0","eslint-config-ash-nazg":"^29.16.0","eslint-config-standard":"^16.0.2","eslint-plugin-array-func":"^3.1.7","eslint-plugin-chai-expect":"^2.2.0","eslint-plugin-chai-friendly":"^0.7.1","eslint-plugin-compat":"^3.9.0","eslint-plugin-eslint-comments":"^3.2.0","eslint-plugin-html":"^6.1.2","eslint-plugin-import":"^2.23.3","eslint-plugin-jsdoc":"^35.0.0","eslint-plugin-markdown":"^2.1.0","eslint-plugin-no-unsanitized":"^3.1.5","eslint-plugin-no-use-extend-native":"^0.5.0","eslint-plugin-node":"^11.1.0","eslint-plugin-promise":"^5.1.0","eslint-plugin-radar":"^0.2.1","eslint-plugin-standard":"^4.1.0","eslint-plugin-unicorn":"^32.0.1","esm":"^3.2.25","mocha":"^8.4.0","nyc":"^15.1.0","open-cli":"^6.0.1","regenerator-runtime":"^0.13.7","rollup":"2.49.0","rollup-plugin-terser":"^7.0.2"},"gitHead":"2eca7bd2e81d891c63f5915157cd7b177395e26a","_id":"regextras@0.8.0","_nodeVersion":"14.15.5","_npmVersion":"7.13.0","dist":{"integrity":"sha512-k519uI04Z3SaY0fLX843MRXnDeG2+vHOFsyhiPZvNLe7r8rD2YNRjq4BQLZZ0oAr2NrtvZlICsXysGNFPGa3CQ==","shasum":"ec0f99853d4912839321172f608b544814b02217","tarball":"http://repository.ncinga.com/nexus/content/groups/npm-all/regextras/-/regextras-0.8.0.tgz","fileCount":31,"unpackedSize":285149,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgq5oRCRA9TVsSAnZWagAAKdMQAKQ8yyxPbAFeXHyV1FiA\nCKNloKp3q+XMZlA5MV/jEPPFGHNt39qqdwTmYpAD1c7udTEhW+mIQ05es5vY\nJo5s+F9Rc1vgmV+N80doYOn7I4IQ74QDytMv1wZogO2LL5/7C3tZ5JSplp82\nTBZc3kDj8PmKo4WioFyJcmx2+y8wnE5fi9uZM0J8n3Dl94CX+HPs/LOlAL6L\nYyPZSk56YJAzU2SkcshnzNxL0+Xl0Qnvj8dlqXDZFk/9Lcx69Kbfv0XxBuPW\n6EdKUc7fZ1z2ujMj9Evm7evFyMBLRBkO3treXzAzN6pdtIifG36yaSA8HkJb\n5AQ+/BotGxijko5vqETv7ZoB0a/+El8O+iZE6D+yrXMUBqYRxK0iGWcwNIL+\nBlhqDfa79JST836YpijlcZcqQcK4wfl9dexh9dmp0O/2AjYqGL9RDGRFpGmN\nr17RNCTXOA9wEAIFLeFgYI+fqqRT03hgao+opscI9DtquzWK2B1DpiEyJh+T\nb3KMCGHIpNN4wlROwBjTIqqjnEQKhs1WRctgOHVMFQusvFcB2Z2qHCBHa0kH\nHJPEz0OFK3PLKB4/AAYOSGj6u5OyfeXbDwyfH0XaEzGNEThATm2F5Cbom9bc\ndXca3p7hXU4+ZOhRw2ZuhwtXf7AUt3ZND7kvEqXANtwtaupTeWHqxGPua+qZ\nQ7c7\r\n=JeG4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDgihGnlawjdqt44j2RiNQo/7Y1eerFMYFjJF9/FWaLuAIhAJH/xJgNEobpGpX8kWycpKRl7SyWlIbPgZuU9LrL2xYK"}]},"_npmUser":{"name":"anonymous","email":"brettz9@yahoo.com"},"directories":{},"maintainers":[{"name":"anonymous","email":"brettz9@yahoo.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/regextras_0.8.0_1621858833118_0.5147473620456904"},"_hasShrinkwrap":false}},"name":"regextras","time":{"modified":"2022-06-26T10:45:09.671Z","created":"2015-02-03T19:47:45.049Z","0.1.0":"2015-02-03T19:47:45.049Z","0.1.1":"2015-02-03T22:42:50.185Z","0.2.0":"2016-04-11T06:22:52.606Z","0.2.1":"2016-04-11T06:44:38.131Z","0.3.0":"2018-04-24T14:22:38.895Z","0.4.0":"2018-04-25T08:08:51.634Z","0.5.0":"2019-06-04T01:03:19.618Z","0.6.0":"2019-07-09T02:57:52.713Z","0.6.1":"2019-07-09T04:39:45.834Z","0.7.0":"2019-12-17T12:12:39.387Z","0.7.1":"2020-05-10T14:31:38.754Z","0.8.0":"2021-05-24T12:20:33.330Z"},"readmeFilename":"README.md","contributors":[],"homepage":"https://github.com/brettz9/regextras"}