├── NAMESPACE ├── setup-r ├── node_modules │ ├── .bin │ │ ├── uuid │ │ └── semver │ ├── typed-rest-client │ │ ├── Index.d.ts │ │ ├── node_modules │ │ │ └── qs │ │ │ │ ├── .eslintignore │ │ │ │ ├── test │ │ │ │ └── index.js │ │ │ │ ├── lib │ │ │ │ └── index.js │ │ │ │ └── .github │ │ │ │ └── workflows │ │ │ │ └── rebase.yml │ │ ├── Index.js │ │ ├── Interfaces.js │ │ ├── Handlers.d.ts │ │ └── opensource │ │ │ └── Node-SMB │ │ │ └── README.md │ ├── tunnel │ │ ├── index.js │ │ ├── .travis.yml │ │ └── .idea │ │ │ ├── encodings.xml │ │ │ ├── vcs.xml │ │ │ └── modules.xml │ ├── underscore │ │ ├── modules │ │ │ ├── package.json │ │ │ ├── isDate.js │ │ │ ├── isError.js │ │ │ ├── isNumber.js │ │ │ ├── isRegExp.js │ │ │ ├── isString.js │ │ │ ├── isSymbol.js │ │ │ ├── isWeakSet.js │ │ │ ├── _hasObjectTag.js │ │ │ ├── isArrayBuffer.js │ │ │ ├── noop.js │ │ │ ├── isNull.js │ │ │ ├── isUndefined.js │ │ │ ├── identity.js │ │ │ ├── isElement.js │ │ │ ├── now.js │ │ │ ├── shuffle.js │ │ │ ├── reduceRight.js │ │ │ ├── _getLength.js │ │ │ ├── compact.js │ │ │ ├── isObject.js │ │ │ ├── _unescapeMap.js │ │ │ ├── constant.js │ │ │ ├── _getByteLength.js │ │ │ ├── reduce.js │ │ │ ├── negate.js │ │ │ ├── _keyInObj.js │ │ │ ├── defaults.js │ │ │ ├── escape.js │ │ │ ├── _escapeMap.js │ │ │ ├── findIndex.js │ │ │ ├── isNaN.js │ │ │ ├── findLastIndex.js │ │ │ ├── .eslintrc │ │ │ ├── chain.js │ │ │ ├── extend.js │ │ │ ├── unescape.js │ │ │ ├── isBoolean.js │ │ │ ├── _chainResult.js │ │ │ ├── _shallowProperty.js │ │ │ ├── zip.js │ │ │ ├── _has.js │ │ │ ├── isArray.js │ │ │ ├── pluck.js │ │ │ ├── _toPath.js │ │ │ ├── after.js │ │ │ ├── defer.js │ │ │ ├── isMap.js │ │ │ ├── isSet.js │ │ │ ├── random.js │ │ │ ├── once.js │ │ │ ├── isFinite.js │ │ │ ├── isWeakMap.js │ │ │ ├── uniqueId.js │ │ │ ├── indexBy.js │ │ │ ├── size.js │ │ │ ├── reject.js │ │ │ ├── without.js │ │ │ ├── _tagTester.js │ │ │ ├── lastIndexOf.js │ │ │ ├── _isBufferLike.js │ │ │ ├── findWhere.js │ │ │ ├── flatten.js │ │ │ ├── partition.js │ │ │ ├── where.js │ │ │ ├── toPath.js │ │ │ ├── propertyOf.js │ │ │ ├── tap.js │ │ │ ├── _deepGet.js │ │ │ ├── extendOwn.js │ │ │ ├── functions.js │ │ │ ├── times.js │ │ │ ├── wrap.js │ │ │ ├── clone.js │ │ │ ├── delay.js │ │ │ ├── rest.js │ │ │ ├── values.js │ │ │ ├── before.js │ │ │ ├── groupBy.js │ │ │ ├── templateSettings.js │ │ │ ├── union.js │ │ │ ├── invert.js │ │ │ ├── matcher.js │ │ │ ├── countBy.js │ │ │ ├── initial.js │ │ │ ├── filter.js │ │ │ ├── last.js │ │ │ ├── property.js │ │ │ └── pairs.js │ │ ├── underscore-node.mjs.map │ │ ├── underscore-node.cjs.map │ │ ├── cjs │ │ │ ├── isDate.js │ │ │ ├── noop.js │ │ │ ├── isError.js │ │ │ ├── isNull.js │ │ │ ├── isNumber.js │ │ │ ├── isRegExp.js │ │ │ ├── isString.js │ │ │ ├── isSymbol.js │ │ │ ├── isWeakSet.js │ │ │ ├── _hasObjectTag.js │ │ │ ├── isArrayBuffer.js │ │ │ ├── isUndefined.js │ │ │ ├── identity.js │ │ │ ├── isElement.js │ │ │ ├── shuffle.js │ │ │ ├── now.js │ │ │ ├── compact.js │ │ │ ├── constant.js │ │ │ ├── isObject.js │ │ │ ├── reduceRight.js │ │ │ ├── negate.js │ │ │ ├── _getLength.js │ │ │ ├── _keyInObj.js │ │ │ ├── reduce.js │ │ │ ├── _unescapeMap.js │ │ │ ├── _getByteLength.js │ │ │ ├── isNaN.js │ │ │ ├── defaults.js │ │ │ ├── escape.js │ │ │ ├── isBoolean.js │ │ │ ├── _escapeMap.js │ │ │ ├── _has.js │ │ │ ├── findIndex.js │ │ │ ├── extend.js │ │ │ ├── _shallowProperty.js │ │ │ ├── findLastIndex.js │ │ │ ├── unescape.js │ │ │ ├── chain.js │ │ │ ├── zip.js │ │ │ ├── _chainResult.js │ │ │ ├── after.js │ │ │ ├── isArray.js │ │ │ ├── pluck.js │ │ │ ├── random.js │ │ │ ├── index-default.js │ │ │ ├── once.js │ │ │ ├── isFinite.js │ │ │ ├── uniqueId.js │ │ │ ├── _toPath.js │ │ │ ├── size.js │ │ │ ├── defer.js │ │ │ ├── indexBy.js │ │ │ ├── isMap.js │ │ │ ├── isSet.js │ │ │ ├── _tagTester.js │ │ │ ├── reject.js │ │ │ ├── flatten.js │ │ │ ├── tap.js │ │ │ ├── where.js │ │ │ ├── _deepGet.js │ │ │ ├── findWhere.js │ │ │ ├── isWeakMap.js │ │ │ ├── propertyOf.js │ │ │ ├── functions.js │ │ │ ├── times.js │ │ │ ├── without.js │ │ │ ├── lastIndexOf.js │ │ │ ├── wrap.js │ │ │ ├── _isBufferLike.js │ │ │ ├── clone.js │ │ │ ├── partition.js │ │ │ ├── toPath.js │ │ │ ├── before.js │ │ │ ├── delay.js │ │ │ ├── rest.js │ │ │ ├── values.js │ │ │ ├── extendOwn.js │ │ │ ├── invert.js │ │ │ ├── matcher.js │ │ │ ├── union.js │ │ │ ├── groupBy.js │ │ │ └── countBy.js │ │ └── amd │ │ │ ├── isDate.js │ │ │ ├── isError.js │ │ │ ├── isNumber.js │ │ │ ├── isRegExp.js │ │ │ ├── isString.js │ │ │ ├── isSymbol.js │ │ │ ├── isWeakSet.js │ │ │ ├── _hasObjectTag.js │ │ │ ├── isArrayBuffer.js │ │ │ ├── noop.js │ │ │ ├── isNull.js │ │ │ ├── isUndefined.js │ │ │ ├── identity.js │ │ │ ├── isElement.js │ │ │ ├── shuffle.js │ │ │ ├── _unescapeMap.js │ │ │ ├── reduceRight.js │ │ │ ├── compact.js │ │ │ ├── _getLength.js │ │ │ ├── now.js │ │ │ ├── defaults.js │ │ │ ├── escape.js │ │ │ ├── isNaN.js │ │ │ ├── extend.js │ │ │ ├── reduce.js │ │ │ ├── _getByteLength.js │ │ │ ├── unescape.js │ │ │ ├── isObject.js │ │ │ ├── constant.js │ │ │ ├── findIndex.js │ │ │ ├── zip.js │ │ │ ├── findLastIndex.js │ │ │ ├── index-default.js │ │ │ ├── isArray.js │ │ │ ├── isBoolean.js │ │ │ ├── negate.js │ │ │ ├── pluck.js │ │ │ ├── _has.js │ │ │ ├── _keyInObj.js │ │ │ ├── defer.js │ │ │ ├── once.js │ │ │ ├── chain.js │ │ │ ├── isFinite.js │ │ │ ├── _chainResult.js │ │ │ ├── isMap.js │ │ │ ├── isSet.js │ │ │ ├── _escapeMap.js │ │ │ ├── _toPath.js │ │ │ ├── reject.js │ │ │ ├── size.js │ │ │ ├── isWeakMap.js │ │ │ ├── _shallowProperty.js │ │ │ ├── after.js │ │ │ ├── clone.js │ │ │ ├── random.js │ │ │ ├── indexBy.js │ │ │ ├── where.js │ │ │ ├── findWhere.js │ │ │ ├── uniqueId.js │ │ │ ├── without.js │ │ │ ├── propertyOf.js │ │ │ ├── _tagTester.js │ │ │ ├── lastIndexOf.js │ │ │ ├── _isBufferLike.js │ │ │ ├── flatten.js │ │ │ ├── toPath.js │ │ │ ├── extendOwn.js │ │ │ ├── functions.js │ │ │ ├── times.js │ │ │ ├── union.js │ │ │ ├── partition.js │ │ │ ├── wrap.js │ │ │ ├── matcher.js │ │ │ ├── tap.js │ │ │ ├── _deepGet.js │ │ │ ├── delay.js │ │ │ ├── rest.js │ │ │ ├── values.js │ │ │ ├── groupBy.js │ │ │ └── invert.js │ ├── @actions │ │ ├── core │ │ │ └── lib │ │ │ │ ├── file-command.d.ts │ │ │ │ ├── utils.d.ts │ │ │ │ └── utils.js.map │ │ ├── http-client │ │ │ ├── interfaces.js │ │ │ ├── actions.png │ │ │ └── proxy.d.ts │ │ ├── exec │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ └── interfaces.js │ │ └── tool-cache │ │ │ └── scripts │ │ │ └── externals │ │ │ └── 7zdec.exe │ ├── linux-os-info │ │ ├── CONTRIBUTING.md │ │ └── CHANGELOG.md │ └── uuid │ │ ├── v3.js │ │ ├── v5.js │ │ ├── index.js │ │ ├── AUTHORS │ │ └── lib │ │ └── rng.js ├── jest.config.js └── .github │ ├── r.json │ └── testthat.json ├── pr-fetch ├── node_modules │ ├── .bin │ │ ├── semver │ │ └── which │ ├── @octokit │ │ ├── endpoint │ │ │ ├── dist-src │ │ │ │ ├── types.js │ │ │ │ ├── generated │ │ │ │ │ └── routes.js │ │ │ │ ├── version.js │ │ │ │ ├── index.js │ │ │ │ ├── endpoint-with-defaults.js │ │ │ │ └── util │ │ │ │ │ ├── omit.js │ │ │ │ │ └── lowercase-keys.js │ │ │ ├── dist-types │ │ │ │ ├── version.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── util │ │ │ │ │ ├── merge-deep.d.ts │ │ │ │ │ ├── extract-url-variable-names.d.ts │ │ │ │ │ ├── url-template.d.ts │ │ │ │ │ ├── lowercase-keys.d.ts │ │ │ │ │ ├── omit.d.ts │ │ │ │ │ └── add-query-parameters.d.ts │ │ │ │ ├── defaults.d.ts │ │ │ │ ├── parse.d.ts │ │ │ │ ├── with-defaults.d.ts │ │ │ │ ├── merge.d.ts │ │ │ │ └── endpoint-with-defaults.d.ts │ │ │ └── node_modules │ │ │ │ ├── universal-user-agent │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ └── browser.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── node.d.ts │ │ │ │ │ └── browser.d.ts │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── isobject │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.cjs.js │ │ │ │ └── is-plain-object │ │ │ │ └── index.d.ts │ │ ├── request │ │ │ ├── dist-src │ │ │ │ ├── types.js │ │ │ │ ├── version.js │ │ │ │ ├── get-buffer-response.js │ │ │ │ └── index.js │ │ │ ├── dist-types │ │ │ │ ├── version.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── get-buffer-response.d.ts │ │ │ │ ├── with-defaults.d.ts │ │ │ │ └── fetch-wrapper.d.ts │ │ │ └── node_modules │ │ │ │ ├── universal-user-agent │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ └── browser.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── browser.d.ts │ │ │ │ │ └── node.d.ts │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── isobject │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.cjs.js │ │ │ │ └── is-plain-object │ │ │ │ └── index.d.ts │ │ ├── request-error │ │ │ └── dist-src │ │ │ │ └── types.js │ │ ├── rest │ │ │ ├── lib │ │ │ │ ├── core.js │ │ │ │ ├── register-plugin.js │ │ │ │ └── factory.js │ │ │ ├── node_modules │ │ │ │ └── universal-user-agent │ │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ └── browser.js │ │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── node.d.ts │ │ │ │ │ └── browser.d.ts │ │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ └── plugins │ │ │ │ ├── validate │ │ │ │ └── index.js │ │ │ │ ├── register-endpoints │ │ │ │ └── index.js │ │ │ │ └── pagination │ │ │ │ └── index.js │ │ └── graphql │ │ │ └── lib │ │ │ └── with-defaults.js │ ├── isexe │ │ └── .npmignore │ ├── shebang-regex │ │ └── index.js │ ├── universal-user-agent │ │ ├── index.d.ts │ │ ├── cypress.json │ │ ├── browser.js │ │ └── index.js │ ├── atob-lite │ │ ├── .npmignore │ │ ├── atob-browser.js │ │ └── atob-node.js │ ├── btoa-lite │ │ ├── .npmignore │ │ ├── btoa-browser.js │ │ └── btoa-node.js │ ├── pump │ │ └── .travis.yml │ ├── deprecation │ │ ├── dist-types │ │ │ └── index.d.ts │ │ ├── dist-src │ │ │ └── index.js │ │ └── dist-web │ │ │ └── index.js │ ├── @actions │ │ ├── exec │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ └── interfaces.js │ │ └── github │ │ │ └── lib │ │ │ ├── interfaces.js.map │ │ │ └── interfaces.js │ ├── octokit-pagination-methods │ │ └── lib │ │ │ ├── get-last-page.js │ │ │ ├── get-next-page.js │ │ │ ├── get-first-page.js │ │ │ ├── get-previous-page.js │ │ │ ├── deprecate.js │ │ │ ├── has-last-page.js │ │ │ ├── has-next-page.js │ │ │ ├── has-first-page.js │ │ │ └── has-previous-page.js │ ├── path-key │ │ └── index.js │ ├── nice-try │ │ └── src │ │ │ └── index.js │ ├── p-finally │ │ └── index.js │ ├── strip-eof │ │ └── index.js │ └── before-after-hook │ │ └── lib │ │ └── remove.js ├── __tests__ │ └── main.test.ts ├── jest.config.js └── action.yml ├── pr-push ├── node_modules │ ├── .bin │ │ ├── semver │ │ └── which │ ├── @octokit │ │ ├── endpoint │ │ │ ├── dist-src │ │ │ │ ├── types.js │ │ │ │ ├── generated │ │ │ │ │ └── routes.js │ │ │ │ ├── version.js │ │ │ │ ├── index.js │ │ │ │ ├── endpoint-with-defaults.js │ │ │ │ └── util │ │ │ │ │ ├── omit.js │ │ │ │ │ └── lowercase-keys.js │ │ │ ├── dist-types │ │ │ │ ├── version.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── defaults.d.ts │ │ │ │ ├── util │ │ │ │ │ ├── merge-deep.d.ts │ │ │ │ │ ├── extract-url-variable-names.d.ts │ │ │ │ │ ├── url-template.d.ts │ │ │ │ │ ├── lowercase-keys.d.ts │ │ │ │ │ ├── omit.d.ts │ │ │ │ │ └── add-query-parameters.d.ts │ │ │ │ ├── parse.d.ts │ │ │ │ ├── with-defaults.d.ts │ │ │ │ ├── merge.d.ts │ │ │ │ └── endpoint-with-defaults.d.ts │ │ │ └── node_modules │ │ │ │ ├── universal-user-agent │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ └── browser.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── browser.d.ts │ │ │ │ │ └── node.d.ts │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── isobject │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.cjs.js │ │ │ │ └── is-plain-object │ │ │ │ └── index.d.ts │ │ ├── request │ │ │ ├── dist-src │ │ │ │ ├── types.js │ │ │ │ ├── version.js │ │ │ │ ├── get-buffer-response.js │ │ │ │ └── index.js │ │ │ ├── dist-types │ │ │ │ ├── version.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── get-buffer-response.d.ts │ │ │ │ ├── with-defaults.d.ts │ │ │ │ └── fetch-wrapper.d.ts │ │ │ └── node_modules │ │ │ │ ├── universal-user-agent │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ └── browser.js │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── browser.d.ts │ │ │ │ │ └── node.d.ts │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ │ ├── isobject │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ └── index.cjs.js │ │ │ │ └── is-plain-object │ │ │ │ └── index.d.ts │ │ ├── request-error │ │ │ └── dist-src │ │ │ │ └── types.js │ │ ├── rest │ │ │ ├── lib │ │ │ │ ├── core.js │ │ │ │ ├── register-plugin.js │ │ │ │ └── factory.js │ │ │ ├── node_modules │ │ │ │ └── universal-user-agent │ │ │ │ │ ├── dist-src │ │ │ │ │ ├── index.js │ │ │ │ │ └── browser.js │ │ │ │ │ ├── dist-types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── node.d.ts │ │ │ │ │ └── browser.d.ts │ │ │ │ │ └── dist-web │ │ │ │ │ ├── index.js │ │ │ │ │ └── index.js.map │ │ │ └── plugins │ │ │ │ ├── validate │ │ │ │ └── index.js │ │ │ │ ├── register-endpoints │ │ │ │ └── index.js │ │ │ │ └── pagination │ │ │ │ └── index.js │ │ └── graphql │ │ │ └── lib │ │ │ └── with-defaults.js │ ├── isexe │ │ └── .npmignore │ ├── shebang-regex │ │ └── index.js │ ├── universal-user-agent │ │ ├── index.d.ts │ │ ├── cypress.json │ │ ├── browser.js │ │ └── index.js │ ├── atob-lite │ │ ├── .npmignore │ │ ├── atob-browser.js │ │ └── atob-node.js │ ├── btoa-lite │ │ ├── .npmignore │ │ ├── btoa-browser.js │ │ └── btoa-node.js │ ├── pump │ │ └── .travis.yml │ ├── deprecation │ │ ├── dist-types │ │ │ └── index.d.ts │ │ ├── dist-src │ │ │ └── index.js │ │ └── dist-web │ │ │ └── index.js │ ├── @actions │ │ ├── exec │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ └── interfaces.js │ │ └── github │ │ │ └── lib │ │ │ ├── interfaces.js.map │ │ │ ├── interfaces.js │ │ │ └── github.d.ts │ ├── octokit-pagination-methods │ │ └── lib │ │ │ ├── get-first-page.js │ │ │ ├── get-last-page.js │ │ │ ├── get-next-page.js │ │ │ ├── get-previous-page.js │ │ │ ├── deprecate.js │ │ │ ├── has-last-page.js │ │ │ ├── has-next-page.js │ │ │ ├── has-first-page.js │ │ │ └── has-previous-page.js │ ├── path-key │ │ └── index.js │ ├── nice-try │ │ └── src │ │ │ └── index.js │ ├── p-finally │ │ └── index.js │ ├── strip-eof │ │ └── index.js │ └── before-after-hook │ │ └── lib │ │ └── remove.js ├── __tests__ │ └── main.test.ts ├── jest.config.js └── action.yml ├── setup-pandoc ├── node_modules │ ├── .bin │ │ ├── uuid │ │ └── semver │ ├── typed-rest-client │ │ ├── Index.d.ts │ │ ├── Index.js │ │ ├── Interfaces.js │ │ ├── Handlers.d.ts │ │ ├── Util.d.ts │ │ └── opensource │ │ │ └── node-http-ntlm │ │ │ └── readme.txt │ ├── tunnel │ │ ├── test │ │ │ └── keys │ │ │ │ ├── ca2-serial │ │ │ │ ├── ca1-cert.srl │ │ │ │ ├── ca2-cert.srl │ │ │ │ ├── ca3-cert.srl │ │ │ │ ├── ca4-cert.srl │ │ │ │ └── ca2-database.txt │ │ ├── .npmignore │ │ ├── index.js │ │ └── CHANGELOG.md │ ├── @actions │ │ ├── core │ │ │ └── lib │ │ │ │ ├── file-command.d.ts │ │ │ │ ├── utils.d.ts │ │ │ │ └── utils.js.map │ │ ├── exec │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ └── interfaces.js │ │ └── tool-cache │ │ │ └── scripts │ │ │ └── externals │ │ │ └── 7zdec.exe │ └── uuid │ │ ├── v3.js │ │ ├── v5.js │ │ ├── index.js │ │ ├── AUTHORS │ │ └── lib │ │ └── rng.js ├── test.html ├── jest.config.js └── action.yml ├── setup-tinytex ├── node_modules │ ├── .bin │ │ ├── uuid │ │ └── semver │ ├── typed-rest-client │ │ ├── Index.d.ts │ │ ├── Index.js │ │ ├── Interfaces.js │ │ ├── Handlers.d.ts │ │ ├── Util.d.ts │ │ └── opensource │ │ │ └── node-http-ntlm │ │ │ └── readme.txt │ ├── tunnel │ │ ├── test │ │ │ └── keys │ │ │ │ ├── ca2-serial │ │ │ │ ├── ca1-cert.srl │ │ │ │ ├── ca2-cert.srl │ │ │ │ ├── ca3-cert.srl │ │ │ │ ├── ca4-cert.srl │ │ │ │ └── ca2-database.txt │ │ ├── .npmignore │ │ ├── index.js │ │ └── CHANGELOG.md │ ├── @actions │ │ ├── core │ │ │ └── lib │ │ │ │ ├── file-command.d.ts │ │ │ │ ├── utils.d.ts │ │ │ │ └── utils.js.map │ │ ├── exec │ │ │ └── lib │ │ │ │ ├── interfaces.js.map │ │ │ │ └── interfaces.js │ │ └── tool-cache │ │ │ └── scripts │ │ │ └── externals │ │ │ └── 7zdec.exe │ └── uuid │ │ ├── v3.js │ │ ├── v5.js │ │ ├── index.js │ │ ├── AUTHORS │ │ └── lib │ │ └── rng.js ├── test.html ├── action.yml └── jest.config.js ├── .gitignore ├── R └── foo.R ├── tests └── test.R ├── .Rbuildignore ├── run-rchk ├── action.yml └── Dockerfile ├── CITATION.cff └── DESCRIPTION /NAMESPACE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup-r/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../uuid/bin/uuid -------------------------------------------------------------------------------- /pr-fetch/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver -------------------------------------------------------------------------------- /pr-fetch/node_modules/.bin/which: -------------------------------------------------------------------------------- 1 | ../which/bin/which -------------------------------------------------------------------------------- /pr-push/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver -------------------------------------------------------------------------------- /pr-push/node_modules/.bin/which: -------------------------------------------------------------------------------- 1 | ../which/bin/which -------------------------------------------------------------------------------- /setup-pandoc/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../uuid/bin/uuid -------------------------------------------------------------------------------- /setup-pandoc/test.html: -------------------------------------------------------------------------------- 1 |

Test

2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/.bin/uuid: -------------------------------------------------------------------------------- 1 | ../uuid/bin/uuid -------------------------------------------------------------------------------- /setup-tinytex/test.html: -------------------------------------------------------------------------------- 1 |

Test

2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .Rproj.user 3 | .Rhistory 4 | -------------------------------------------------------------------------------- /R/foo.R: -------------------------------------------------------------------------------- 1 | add_one <- function(x) { 2 | x + 1 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup-r/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver.js -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Index.d.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test.R: -------------------------------------------------------------------------------- 1 | stopifnot(testpackage:::add_one(1) == 2) 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request-error/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request-error/dist-src/types.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver.js -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca2-serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver.js -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca2-serial: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/generated/routes.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/generated/routes.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pr-push/node_modules/isexe/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/Index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/isexe/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/.npmignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /node_modules 3 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/.npmignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /node_modules 3 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca1-cert.srl: -------------------------------------------------------------------------------- 1 | B111C9CEF0257692 2 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca2-cert.srl: -------------------------------------------------------------------------------- 1 | 9BF2D4B2E00EDF16 2 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca3-cert.srl: -------------------------------------------------------------------------------- 1 | EF7B2CF0FA61DF41 2 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca4-cert.srl: -------------------------------------------------------------------------------- 1 | B01FE0416A2EDCF5 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca1-cert.srl: -------------------------------------------------------------------------------- 1 | B111C9CEF0257692 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca2-cert.srl: -------------------------------------------------------------------------------- 1 | 9BF2D4B2E00EDF16 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca3-cert.srl: -------------------------------------------------------------------------------- 1 | EF7B2CF0FA61DF41 2 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca4-cert.srl: -------------------------------------------------------------------------------- 1 | B01FE0416A2EDCF5 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/tunnel'); 2 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/tunnel'); 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/tunnel'); 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/shebang-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = /^#!.*/; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/shebang-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = /^#!.*/; 3 | -------------------------------------------------------------------------------- /pr-fetch/__tests__/main.test.ts: -------------------------------------------------------------------------------- 1 | import * as path from "path"; 2 | 3 | test("test runs", () => {}); 4 | -------------------------------------------------------------------------------- /pr-push/__tests__/main.test.ts: -------------------------------------------------------------------------------- 1 | import * as path from "path"; 2 | 3 | test("test runs", () => {}); 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/version.js: -------------------------------------------------------------------------------- 1 | export const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-src/version.js: -------------------------------------------------------------------------------- 1 | export const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/version.js: -------------------------------------------------------------------------------- 1 | export const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-src/version.js: -------------------------------------------------------------------------------- 1 | export const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/universal-user-agent/index.d.ts: -------------------------------------------------------------------------------- 1 | export default function getUserAgentNode(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/universal-user-agent/index.d.ts: -------------------------------------------------------------------------------- 1 | export default function getUserAgentNode(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-types/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/atob-lite/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | bundle.js 5 | test 6 | test.js 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/btoa-lite/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | bundle.js 5 | test 6 | test.js 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/pump/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | 5 | script: "npm test" 6 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-types/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/atob-lite/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | bundle.js 5 | test 6 | test.js 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/atob-lite/atob-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = function _atob(str) { 2 | return atob(str) 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/btoa-lite/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | bundle.js 5 | test 6 | test.js 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/btoa-lite/btoa-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = function _btoa(str) { 2 | return btoa(str) 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/pump/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | 5 | script: "npm test" 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION = "0.0.0-development"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const request: import("./types").request; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/atob-lite/atob-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = function _atob(str) { 2 | return atob(str) 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/btoa-lite/btoa-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = function _btoa(str) { 2 | return btoa(str) 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/universal-user-agent/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "integrationFolder": "test", 3 | "video": false 4 | } 5 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const endpoint: import("./types").endpoint; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const request: import("./types").request; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/universal-user-agent/cypress.json: -------------------------------------------------------------------------------- 1 | { 2 | "integrationFolder": "test", 3 | "video": false 4 | } 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "4" 4 | - "6" 5 | - "8" 6 | - "10" 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export declare const endpoint: import("./types").endpoint; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/lib/core.js: -------------------------------------------------------------------------------- 1 | const factory = require("./factory"); 2 | 3 | module.exports = factory(); 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/lib/core.js: -------------------------------------------------------------------------------- 1 | const factory = require("./factory"); 2 | 3 | module.exports = factory(); 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/deprecation/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export class Deprecation extends Error { 2 | name: "Deprecation"; 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/deprecation/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export class Deprecation extends Error { 2 | name: "Deprecation"; 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/index.d.ts: -------------------------------------------------------------------------------- 1 | export { getUserAgent } from "./node"; 2 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/core/lib/file-command.d.ts: -------------------------------------------------------------------------------- 1 | export declare function issueCommand(command: string, message: any): void; 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/Index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isDate.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | 3 | export default tagTester('Date'); 4 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/btoa-lite/btoa-node.js: -------------------------------------------------------------------------------- 1 | module.exports = function btoa(str) { 2 | return new Buffer(str).toString('base64') 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/btoa-lite/btoa-node.js: -------------------------------------------------------------------------------- 1 | module.exports = function btoa(str) { 2 | return new Buffer(str).toString('base64') 3 | } 4 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/core/lib/file-command.d.ts: -------------------------------------------------------------------------------- 1 | export declare function issueCommand(command: string, message: any): void; 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/http-client/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isError.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | 3 | export default tagTester('Error'); 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isNumber.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | 3 | export default tagTester('Number'); 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isRegExp.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | 3 | export default tagTester('RegExp'); 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isString.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | 3 | export default tagTester('String'); 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isSymbol.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | 3 | export default tagTester('Symbol'); 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isWeakSet.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | 3 | export default tagTester('WeakSet'); 4 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/core/lib/file-command.d.ts: -------------------------------------------------------------------------------- 1 | export declare function issueCommand(command: string, message: any): void; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/merge-deep.d.ts: -------------------------------------------------------------------------------- 1 | export declare function mergeDeep(defaults: any, options: any): object; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults } from "./types"; 2 | export declare const DEFAULTS: Defaults; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/merge-deep.d.ts: -------------------------------------------------------------------------------- 1 | export declare function mergeDeep(defaults: any, options: any): object; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-types/node.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_hasObjectTag.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | 3 | export default tagTester('Object'); 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults } from "./types"; 2 | export declare const DEFAULTS: Defaults; 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-types/browser.d.ts: -------------------------------------------------------------------------------- 1 | export declare function getUserAgent(): string; 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/atob-lite/atob-node.js: -------------------------------------------------------------------------------- 1 | module.exports = function atob(str) { 2 | return Buffer.from(str, 'base64').toString('binary') 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/atob-lite/atob-node.js: -------------------------------------------------------------------------------- 1 | module.exports = function atob(str) { 2 | return Buffer.from(str, 'base64').toString('binary') 3 | } 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/linux-os-info/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing 2 | 3 | Contributions are always welcome, no matter how large or small. 4 | 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isArrayBuffer.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | 3 | export default tagTester('ArrayBuffer'); 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/v3.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var md5 = require('./lib/md5'); 3 | 4 | module.exports = v35('v3', 0x30, md5); -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/v5.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var sha1 = require('./lib/sha1'); 3 | module.exports = v35('v5', 0x50, sha1); 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/isobject/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isObject(val: any): boolean; 2 | 3 | export default isObject; 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/isobject/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isObject(val: any): boolean; 2 | 3 | export default isObject; 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/isobject/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isObject(val: any): boolean; 2 | 3 | export default isObject; 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/isobject/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isObject(val: any): boolean; 2 | 3 | export default isObject; 4 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/v3.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var md5 = require('./lib/md5'); 3 | 4 | module.exports = v35('v3', 0x30, md5); -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/v5.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var sha1 = require('./lib/sha1'); 3 | module.exports = v35('v5', 0x50, sha1); 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/http-client/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxsen/actions/master/setup-r/node_modules/@actions/http-client/actions.png -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/noop.js: -------------------------------------------------------------------------------- 1 | // Predicate-generating function. Often useful outside of Underscore. 2 | export default function noop(){} 3 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/uuid/v3.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var md5 = require('./lib/md5'); 3 | 4 | module.exports = v35('v3', 0x30, md5); -------------------------------------------------------------------------------- /setup-tinytex/node_modules/uuid/v5.js: -------------------------------------------------------------------------------- 1 | var v35 = require('./lib/v35.js'); 2 | var sha1 = require('./lib/sha1'); 3 | module.exports = v35('v5', 0x50, sha1); 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/extract-url-variable-names.d.ts: -------------------------------------------------------------------------------- 1 | export declare function extractUrlVariableNames(url: string): string[]; 2 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/extract-url-variable-names.d.ts: -------------------------------------------------------------------------------- 1 | export declare function extractUrlVariableNames(url: string): string[]; 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isNull.js: -------------------------------------------------------------------------------- 1 | // Is a given value equal to null? 2 | export default function isNull(obj) { 3 | return obj === null; 4 | } 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/underscore-node.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"underscore-node.mjs","sources":[],"sourcesContent":null,"names":[],"mappings":";;;;;"} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/exec/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/exec/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/underscore-node.cjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"underscore-node.cjs","sources":[],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;"} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/exec/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/is-plain-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isPlainObject(o: any): boolean; 2 | 3 | export default isPlainObject; 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-src/get-buffer-response.js: -------------------------------------------------------------------------------- 1 | export default function getBufferResponse(response) { 2 | return response.arrayBuffer(); 3 | } 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/is-plain-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isPlainObject(o: any): boolean; 2 | 3 | export default isPlainObject; 4 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/is-plain-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isPlainObject(o: any): boolean; 2 | 3 | export default isPlainObject; 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-src/get-buffer-response.js: -------------------------------------------------------------------------------- 1 | export default function getBufferResponse(response) { 2 | return response.arrayBuffer(); 3 | } 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/is-plain-object/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function isPlainObject(o: any): boolean; 2 | 3 | export default isPlainObject; 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-src/browser.js: -------------------------------------------------------------------------------- 1 | export function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/exec/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isDate.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | 3 | var isDate = _tagTester('Date'); 4 | 5 | module.exports = isDate; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/noop.js: -------------------------------------------------------------------------------- 1 | // Predicate-generating function. Often useful outside of Underscore. 2 | function noop(){} 3 | 4 | module.exports = noop; 5 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/exec/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/exec/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/exec/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/node_modules/qs/test/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | require('./parse'); 4 | 5 | require('./stringify'); 6 | 7 | require('./utils'); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isError.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | 3 | var isError = _tagTester('Error'); 4 | 5 | module.exports = isError; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isNull.js: -------------------------------------------------------------------------------- 1 | // Is a given value equal to null? 2 | function isNull(obj) { 3 | return obj === null; 4 | } 5 | 6 | module.exports = isNull; 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isNumber.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | 3 | var isNumber = _tagTester('Number'); 4 | 5 | module.exports = isNumber; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isRegExp.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | 3 | var isRegExp = _tagTester('RegExp'); 4 | 5 | module.exports = isRegExp; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isString.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | 3 | var isString = _tagTester('String'); 4 | 5 | module.exports = isString; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isSymbol.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | 3 | var isSymbol = _tagTester('Symbol'); 4 | 5 | module.exports = isSymbol; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isUndefined.js: -------------------------------------------------------------------------------- 1 | // Is a given variable undefined? 2 | export default function isUndefined(obj) { 3 | return obj === void 0; 4 | } 5 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/exec/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/github/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":";AAAA,uDAAuD"} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/url-template.d.ts: -------------------------------------------------------------------------------- 1 | export declare function parseUrl(template: string): { 2 | expand: (context: object) => string; 3 | }; 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/github/lib/interfaces.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":";AAAA,uDAAuD"} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/url-template.d.ts: -------------------------------------------------------------------------------- 1 | export declare function parseUrl(template: string): { 2 | expand: (context: object) => string; 3 | }; 4 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/exec/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isDate.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester'], function (_tagTester) { 2 | 3 | var isDate = _tagTester('Date'); 4 | 5 | return isDate; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isError.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester'], function (_tagTester) { 2 | 3 | var isError = _tagTester('Error'); 4 | 5 | return isError; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isWeakSet.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | 3 | var isWeakSet = _tagTester('WeakSet'); 4 | 5 | module.exports = isWeakSet; 6 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/exec/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/parse.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, RequestOptions } from "./types"; 2 | export declare function parse(options: Defaults): RequestOptions; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/parse.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, RequestOptions } from "./types"; 2 | export declare function parse(options: Defaults): RequestOptions; 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/tool-cache/scripts/externals/7zdec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxsen/actions/master/setup-r/node_modules/@actions/tool-cache/scripts/externals/7zdec.exe -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isNumber.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester'], function (_tagTester) { 2 | 3 | var isNumber = _tagTester('Number'); 4 | 5 | return isNumber; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isRegExp.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester'], function (_tagTester) { 2 | 3 | var isRegExp = _tagTester('RegExp'); 4 | 5 | return isRegExp; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isString.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester'], function (_tagTester) { 2 | 3 | var isString = _tagTester('String'); 4 | 5 | return isString; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isSymbol.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester'], function (_tagTester) { 2 | 3 | var isSymbol = _tagTester('Symbol'); 4 | 5 | return isSymbol; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/identity.js: -------------------------------------------------------------------------------- 1 | // Keep the identity function around for default iteratees. 2 | export default function identity(value) { 3 | return value; 4 | } 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isElement.js: -------------------------------------------------------------------------------- 1 | // Is a given value a DOM element? 2 | export default function isElement(obj) { 3 | return !!(obj && obj.nodeType === 1); 4 | } 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/index.js: -------------------------------------------------------------------------------- 1 | var v1 = require('./v1'); 2 | var v4 = require('./v4'); 3 | 4 | var uuid = v4; 5 | uuid.v1 = v1; 6 | uuid.v4 = v4; 7 | 8 | module.exports = uuid; 9 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/index.js: -------------------------------------------------------------------------------- 1 | var v1 = require('./v1'); 2 | var v4 = require('./v4'); 3 | 4 | var uuid = v4; 5 | uuid.v1 = v1; 6 | uuid.v4 = v4; 7 | 8 | module.exports = uuid; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isWeakSet.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester'], function (_tagTester) { 2 | 3 | var isWeakSet = _tagTester('WeakSet'); 4 | 5 | return isWeakSet; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_hasObjectTag.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | 3 | var hasObjectTag = _tagTester('Object'); 4 | 5 | module.exports = hasObjectTag; 6 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/uuid/index.js: -------------------------------------------------------------------------------- 1 | var v1 = require('./v1'); 2 | var v4 = require('./v4'); 3 | 4 | var uuid = v4; 5 | uuid.v1 = v1; 6 | uuid.v4 = v4; 7 | 8 | module.exports = uuid; 9 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/tool-cache/scripts/externals/7zdec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxsen/actions/master/setup-pandoc/node_modules/@actions/tool-cache/scripts/externals/7zdec.exe -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/test/keys/ca2-database.txt: -------------------------------------------------------------------------------- 1 | R 380729182912Z 110314182914Z 8306BE7DE1BB099A unknown /C=US/ST=CA/L=SF/O=Joyent/OU=Node.js/CN=agent4/emailAddress=ry@tinyclouds.org 2 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isArrayBuffer.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | 3 | var isArrayBuffer = _tagTester('ArrayBuffer'); 4 | 5 | module.exports = isArrayBuffer; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isUndefined.js: -------------------------------------------------------------------------------- 1 | // Is a given variable undefined? 2 | function isUndefined(obj) { 3 | return obj === void 0; 4 | } 5 | 6 | module.exports = isUndefined; 7 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/test/keys/ca2-database.txt: -------------------------------------------------------------------------------- 1 | R 380729182912Z 110314182914Z 8306BE7DE1BB099A unknown /C=US/ST=CA/L=SF/O=Joyent/OU=Node.js/CN=agent4/emailAddress=ry@tinyclouds.org 2 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/lowercase-keys.d.ts: -------------------------------------------------------------------------------- 1 | export declare function lowercaseKeys(object?: { 2 | [key: string]: any; 3 | }): { 4 | [key: string]: any; 5 | }; 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/omit.d.ts: -------------------------------------------------------------------------------- 1 | export declare function omit(object: { 2 | [key: string]: any; 3 | }, keysToOmit: string[]): { 4 | [key: string]: any; 5 | }; 6 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/lowercase-keys.d.ts: -------------------------------------------------------------------------------- 1 | export declare function lowercaseKeys(object?: { 2 | [key: string]: any; 3 | }): { 4 | [key: string]: any; 5 | }; 6 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/omit.d.ts: -------------------------------------------------------------------------------- 1 | export declare function omit(object: { 2 | [key: string]: any; 3 | }, keysToOmit: string[]): { 4 | [key: string]: any; 5 | }; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_hasObjectTag.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester'], function (_tagTester) { 2 | 3 | var hasObjectTag = _tagTester('Object'); 4 | 5 | return hasObjectTag; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-tinytex/action.yml: -------------------------------------------------------------------------------- 1 | name: 'Setup TinyTeX' 2 | description: 'Setup TinyTeX and add it to your PATH' 3 | author: 'Jim Hester' 4 | runs: 5 | using: 'node12' 6 | main: 'lib/setup-tinytex.js' 7 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/tool-cache/scripts/externals/7zdec.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foxsen/actions/master/setup-tinytex/node_modules/@actions/tool-cache/scripts/externals/7zdec.exe -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-types/get-buffer-response.d.ts: -------------------------------------------------------------------------------- 1 | import { Response } from "node-fetch"; 2 | export default function getBufferResponse(response: Response): Promise; 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/universal-user-agent/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = getUserAgentBrowser 2 | 3 | function getUserAgentBrowser () { 4 | /* global navigator */ 5 | return navigator.userAgent 6 | } 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-types/get-buffer-response.d.ts: -------------------------------------------------------------------------------- 1 | import { Response } from "node-fetch"; 2 | export default function getBufferResponse(response: Response): Promise; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/universal-user-agent/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = getUserAgentBrowser 2 | 3 | function getUserAgentBrowser () { 4 | /* global navigator */ 5 | return navigator.userAgent 6 | } 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isArrayBuffer.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester'], function (_tagTester) { 2 | 3 | var isArrayBuffer = _tagTester('ArrayBuffer'); 4 | 5 | return isArrayBuffer; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/noop.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Predicate-generating function. Often useful outside of Underscore. 4 | function noop(){} 5 | 6 | return noop; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/identity.js: -------------------------------------------------------------------------------- 1 | // Keep the identity function around for default iteratees. 2 | function identity(value) { 3 | return value; 4 | } 5 | 6 | module.exports = identity; 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isElement.js: -------------------------------------------------------------------------------- 1 | // Is a given value a DOM element? 2 | function isElement(obj) { 3 | return !!(obj && obj.nodeType === 1); 4 | } 5 | 6 | module.exports = isElement; 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/now.js: -------------------------------------------------------------------------------- 1 | // A (possibly faster) way to get the current timestamp as an integer. 2 | export default Date.now || function() { 3 | return new Date().getTime(); 4 | }; 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/shuffle.js: -------------------------------------------------------------------------------- 1 | import sample from './sample.js'; 2 | 3 | // Shuffle a collection. 4 | export default function shuffle(obj) { 5 | return sample(obj, Infinity); 6 | } 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/index.js: -------------------------------------------------------------------------------- 1 | import { withDefaults } from "./with-defaults"; 2 | import { DEFAULTS } from "./defaults"; 3 | export const endpoint = withDefaults(null, DEFAULTS); 4 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/index.js: -------------------------------------------------------------------------------- 1 | import { withDefaults } from "./with-defaults"; 2 | import { DEFAULTS } from "./defaults"; 3 | export const endpoint = withDefaults(null, DEFAULTS); 4 | -------------------------------------------------------------------------------- /setup-r/node_modules/linux-os-info/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | All notable changes to this project will be documented in this file. 3 | 4 | ## [Unreleased] 5 | 6 | ## [1.0.0] - 2018-02-10 7 | * First public version -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/reduceRight.js: -------------------------------------------------------------------------------- 1 | import createReduce from './_createReduce.js'; 2 | 3 | // The right-associative version of reduce, also known as `foldr`. 4 | export default createReduce(-1); 5 | -------------------------------------------------------------------------------- /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^pr-fetch$ 2 | ^pr-push$ 3 | ^run-rchk$ 4 | ^setup-r$ 5 | ^setup-pandoc$ 6 | ^setup-tinytex$ 7 | ^examples$ 8 | ^LICENSE$ 9 | ^.github$ 10 | ^actions\.Rproj$ 11 | ^\.Rproj\.user$ 12 | ^Makefile$ 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/AUTHORS: -------------------------------------------------------------------------------- 1 | Robert Kieffer 2 | Christoph Tavan 3 | AJ ONeal 4 | Vincent Voyer 5 | Roman Shtylman 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-types/with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { request, endpoint, Parameters } from "./types"; 2 | export default function withDefaults(oldEndpoint: endpoint, newDefaults: Parameters): request; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-types/with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { request, endpoint, Parameters } from "./types"; 2 | export default function withDefaults(oldEndpoint: endpoint, newDefaults: Parameters): request; 3 | -------------------------------------------------------------------------------- /run-rchk/action.yml: -------------------------------------------------------------------------------- 1 | name: 'Run rchk tests' 2 | description: 'Run rchk tests' 3 | inputs: 4 | apt: 5 | default: '' 6 | package: 7 | default: '' 8 | runs: 9 | using: 'docker' 10 | image: 'Dockerfile' 11 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/AUTHORS: -------------------------------------------------------------------------------- 1 | Robert Kieffer 2 | Christoph Tavan 3 | AJ ONeal 4 | Vincent Voyer 5 | Roman Shtylman 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/shuffle.js: -------------------------------------------------------------------------------- 1 | var sample = require('./sample.js'); 2 | 3 | // Shuffle a collection. 4 | function shuffle(obj) { 5 | return sample(obj, Infinity); 6 | } 7 | 8 | module.exports = shuffle; 9 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/uuid/AUTHORS: -------------------------------------------------------------------------------- 1 | Robert Kieffer 2 | Christoph Tavan 3 | AJ ONeal 4 | Vincent Voyer 5 | Roman Shtylman 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/util/add-query-parameters.d.ts: -------------------------------------------------------------------------------- 1 | export declare function addQueryParameters(url: string, parameters: { 2 | [x: string]: string | undefined; 3 | q?: string; 4 | }): string; 5 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/util/add-query-parameters.d.ts: -------------------------------------------------------------------------------- 1 | export declare function addQueryParameters(url: string, parameters: { 2 | [x: string]: string | undefined; 3 | q?: string; 4 | }): string; 5 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isNull.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Is a given value equal to null? 4 | function isNull(obj) { 5 | return obj === null; 6 | } 7 | 8 | return isNull; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/now.js: -------------------------------------------------------------------------------- 1 | // A (possibly faster) way to get the current timestamp as an integer. 2 | var now = Date.now || function() { 3 | return new Date().getTime(); 4 | }; 5 | 6 | module.exports = now; 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_getLength.js: -------------------------------------------------------------------------------- 1 | import shallowProperty from './_shallowProperty.js'; 2 | 3 | // Internal helper to obtain the `length` property of an object. 4 | export default shallowProperty('length'); 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/compact.js: -------------------------------------------------------------------------------- 1 | import filter from './filter.js'; 2 | 3 | // Trim out all falsy values from an array. 4 | export default function compact(array) { 5 | return filter(array, Boolean); 6 | } 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isObject.js: -------------------------------------------------------------------------------- 1 | // Is a given variable an object? 2 | export default function isObject(obj) { 3 | var type = typeof obj; 4 | return type === 'function' || type === 'object' && !!obj; 5 | } 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@actions/github/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* eslint-disable @typescript-eslint/no-explicit-any */ 3 | Object.defineProperty(exports, "__esModule", { value: true }); 4 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, endpoint, Parameters } from "./types"; 2 | export declare function withDefaults(oldDefaults: Defaults | null, newDefaults: Parameters): endpoint; 3 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/github/lib/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /* eslint-disable @typescript-eslint/no-explicit-any */ 3 | Object.defineProperty(exports, "__esModule", { value: true }); 4 | //# sourceMappingURL=interfaces.js.map -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, endpoint, Parameters } from "./types"; 2 | export declare function withDefaults(oldDefaults: Defaults | null, newDefaults: Parameters): endpoint; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-web/index.js: -------------------------------------------------------------------------------- 1 | function getUserAgent() { 2 | return navigator.userAgent; 3 | } 4 | 5 | export { getUserAgent }; 6 | //# sourceMappingURL=index.js.map 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_unescapeMap.js: -------------------------------------------------------------------------------- 1 | import invert from './invert.js'; 2 | import escapeMap from './_escapeMap.js'; 3 | 4 | // Internal list of HTML entities for unescaping. 5 | export default invert(escapeMap); 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/constant.js: -------------------------------------------------------------------------------- 1 | // Predicate-generating function. Often useful outside of Underscore. 2 | export default function constant(value) { 3 | return function() { 4 | return value; 5 | }; 6 | } 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/merge.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, Route, Parameters } from "./types"; 2 | export declare function merge(defaults: Defaults | null, route?: Route | Parameters, options?: Parameters): Defaults; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/merge.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, Route, Parameters } from "./types"; 2 | export declare function merge(defaults: Defaults | null, route?: Route | Parameters, options?: Parameters): Defaults; 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_getByteLength.js: -------------------------------------------------------------------------------- 1 | import shallowProperty from './_shallowProperty.js'; 2 | 3 | // Internal helper to obtain the `byteLength` property of an object. 4 | export default shallowProperty('byteLength'); 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/reduce.js: -------------------------------------------------------------------------------- 1 | import createReduce from './_createReduce.js'; 2 | 3 | // **Reduce** builds up a single result from a list of values, aka `inject`, 4 | // or `foldl`. 5 | export default createReduce(1); 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isUndefined.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Is a given variable undefined? 4 | function isUndefined(obj) { 5 | return obj === void 0; 6 | } 7 | 8 | return isUndefined; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/compact.js: -------------------------------------------------------------------------------- 1 | var filter = require('./filter.js'); 2 | 3 | // Trim out all falsy values from an array. 4 | function compact(array) { 5 | return filter(array, Boolean); 6 | } 7 | 8 | module.exports = compact; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/constant.js: -------------------------------------------------------------------------------- 1 | // Predicate-generating function. Often useful outside of Underscore. 2 | function constant(value) { 3 | return function() { 4 | return value; 5 | }; 6 | } 7 | 8 | module.exports = constant; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isObject.js: -------------------------------------------------------------------------------- 1 | // Is a given variable an object? 2 | function isObject(obj) { 3 | var type = typeof obj; 4 | return type === 'function' || type === 'object' && !!obj; 5 | } 6 | 7 | module.exports = isObject; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/negate.js: -------------------------------------------------------------------------------- 1 | // Returns a negated version of the passed-in predicate. 2 | export default function negate(predicate) { 3 | return function() { 4 | return !predicate.apply(this, arguments); 5 | }; 6 | } 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/identity.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Keep the identity function around for default iteratees. 4 | function identity(value) { 5 | return value; 6 | } 7 | 8 | return identity; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isElement.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Is a given value a DOM element? 4 | function isElement(obj) { 5 | return !!(obj && obj.nodeType === 1); 6 | } 7 | 8 | return isElement; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/shuffle.js: -------------------------------------------------------------------------------- 1 | define(['./sample'], function (sample) { 2 | 3 | // Shuffle a collection. 4 | function shuffle(obj) { 5 | return sample(obj, Infinity); 6 | } 7 | 8 | return shuffle; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_keyInObj.js: -------------------------------------------------------------------------------- 1 | // Internal `_.pick` helper function to determine whether `key` is an enumerable 2 | // property name of `obj`. 3 | export default function keyInObj(value, key, obj) { 4 | return key in obj; 5 | } 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/defaults.js: -------------------------------------------------------------------------------- 1 | import createAssigner from './_createAssigner.js'; 2 | import allKeys from './allKeys.js'; 3 | 4 | // Fill in a given object with default properties. 5 | export default createAssigner(allKeys, true); 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/escape.js: -------------------------------------------------------------------------------- 1 | import createEscaper from './_createEscaper.js'; 2 | import escapeMap from './_escapeMap.js'; 3 | 4 | // Function for escaping strings to HTML interpolation. 5 | export default createEscaper(escapeMap); 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/reduceRight.js: -------------------------------------------------------------------------------- 1 | var _createReduce = require('./_createReduce.js'); 2 | 3 | // The right-associative version of reduce, also known as `foldr`. 4 | var reduceRight = _createReduce(-1); 5 | 6 | module.exports = reduceRight; 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_escapeMap.js: -------------------------------------------------------------------------------- 1 | // Internal list of HTML entities for escaping. 2 | export default { 3 | '&': '&', 4 | '<': '<', 5 | '>': '>', 6 | '"': '"', 7 | "'": ''', 8 | '`': '`' 9 | }; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/findIndex.js: -------------------------------------------------------------------------------- 1 | import createPredicateIndexFinder from './_createPredicateIndexFinder.js'; 2 | 3 | // Returns the first index on an array-like that passes a truth test. 4 | export default createPredicateIndexFinder(1); 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isNaN.js: -------------------------------------------------------------------------------- 1 | import { _isNaN } from './_setup.js'; 2 | import isNumber from './isNumber.js'; 3 | 4 | // Is the given value `NaN`? 5 | export default function isNaN(obj) { 6 | return isNumber(obj) && _isNaN(obj); 7 | } 8 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/plugins/validate/index.js: -------------------------------------------------------------------------------- 1 | module.exports = octokitValidate; 2 | 3 | const validate = require("./validate"); 4 | 5 | function octokitValidate(octokit) { 6 | octokit.hook.before("request", validate.bind(null, octokit)); 7 | } 8 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/get-last-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getLastPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getLastPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'last', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/get-next-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getNextPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getNextPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'next', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/plugins/validate/index.js: -------------------------------------------------------------------------------- 1 | module.exports = octokitValidate; 2 | 3 | const validate = require("./validate"); 4 | 5 | function octokitValidate(octokit) { 6 | octokit.hook.before("request", validate.bind(null, octokit)); 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/get-first-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getFirstPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getFirstPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'first', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/get-last-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getLastPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getLastPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'last', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/get-next-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getNextPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getNextPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'next', headers) 7 | } 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/core/lib/utils.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Sanitizes an input into a string so it can be passed into issueCommand safely 3 | * @param input input to sanitize into a string 4 | */ 5 | export declare function toCommandValue(input: any): string; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/http-client/proxy.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | import * as url from 'url'; 3 | export declare function getProxyUrl(reqUrl: url.Url): url.Url | undefined; 4 | export declare function checkBypass(reqUrl: url.Url): boolean; 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/negate.js: -------------------------------------------------------------------------------- 1 | // Returns a negated version of the passed-in predicate. 2 | function negate(predicate) { 3 | return function() { 4 | return !predicate.apply(this, arguments); 5 | }; 6 | } 7 | 8 | module.exports = negate; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/findLastIndex.js: -------------------------------------------------------------------------------- 1 | import createPredicateIndexFinder from './_createPredicateIndexFinder.js'; 2 | 3 | // Returns the last index on an array-like that passes a truth test. 4 | export default createPredicateIndexFinder(-1); 5 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/get-first-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getFirstPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getFirstPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'first', headers) 7 | } 8 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/core/lib/utils.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Sanitizes an input into a string so it can be passed into issueCommand safely 3 | * @param input input to sanitize into a string 4 | */ 5 | export declare function toCommandValue(input: any): string; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_unescapeMap.js: -------------------------------------------------------------------------------- 1 | define(['./invert', './_escapeMap'], function (invert, _escapeMap) { 2 | 3 | // Internal list of HTML entities for unescaping. 4 | var unescapeMap = invert(_escapeMap); 5 | 6 | return unescapeMap; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/reduceRight.js: -------------------------------------------------------------------------------- 1 | define(['./_createReduce'], function (_createReduce) { 2 | 3 | // The right-associative version of reduce, also known as `foldr`. 4 | var reduceRight = _createReduce(-1); 5 | 6 | return reduceRight; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_getLength.js: -------------------------------------------------------------------------------- 1 | var _shallowProperty = require('./_shallowProperty.js'); 2 | 3 | // Internal helper to obtain the `length` property of an object. 4 | var getLength = _shallowProperty('length'); 5 | 6 | module.exports = getLength; 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_keyInObj.js: -------------------------------------------------------------------------------- 1 | // Internal `_.pick` helper function to determine whether `key` is an enumerable 2 | // property name of `obj`. 3 | function keyInObj(value, key, obj) { 4 | return key in obj; 5 | } 6 | 7 | module.exports = keyInObj; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "parserOptions": { 3 | "ecmaVersion": 6, 4 | "sourceType": "module", 5 | }, 6 | "plugins": [ 7 | "import" 8 | ], 9 | "extends": [ 10 | "plugin:import/errors" 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/chain.js: -------------------------------------------------------------------------------- 1 | import _ from './underscore.js'; 2 | 3 | // Start chaining a wrapped Underscore object. 4 | export default function chain(obj) { 5 | var instance = _(obj); 6 | instance._chain = true; 7 | return instance; 8 | } 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/extend.js: -------------------------------------------------------------------------------- 1 | import createAssigner from './_createAssigner.js'; 2 | import allKeys from './allKeys.js'; 3 | 4 | // Extend a given object with all the properties in passed-in object(s). 5 | export default createAssigner(allKeys); 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/unescape.js: -------------------------------------------------------------------------------- 1 | import createEscaper from './_createEscaper.js'; 2 | import unescapeMap from './_unescapeMap.js'; 3 | 4 | // Function for unescaping strings from HTML interpolation. 5 | export default createEscaper(unescapeMap); 6 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/core/lib/utils.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Sanitizes an input into a string so it can be passed into issueCommand safely 3 | * @param input input to sanitize into a string 4 | */ 5 | export declare function toCommandValue(input: any): string; 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/endpoint-with-defaults.js: -------------------------------------------------------------------------------- 1 | import { merge } from "./merge"; 2 | import { parse } from "./parse"; 3 | export function endpointWithDefaults(defaults, route, options) { 4 | return parse(merge(defaults, route, options)); 5 | } 6 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/get-previous-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getPreviousPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getPreviousPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'prev', headers) 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/endpoint-with-defaults.js: -------------------------------------------------------------------------------- 1 | import { merge } from "./merge"; 2 | import { parse } from "./parse"; 3 | export function endpointWithDefaults(defaults, route, options) { 4 | return parse(merge(defaults, route, options)); 5 | } 6 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/get-previous-page.js: -------------------------------------------------------------------------------- 1 | module.exports = getPreviousPage 2 | 3 | const getPage = require('./get-page') 4 | 5 | function getPreviousPage (octokit, link, headers) { 6 | return getPage(octokit, link, 'prev', headers) 7 | } 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/compact.js: -------------------------------------------------------------------------------- 1 | define(['./filter'], function (filter) { 2 | 3 | // Trim out all falsy values from an array. 4 | function compact(array) { 5 | return filter(array, Boolean); 6 | } 7 | 8 | return compact; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/reduce.js: -------------------------------------------------------------------------------- 1 | var _createReduce = require('./_createReduce.js'); 2 | 3 | // **Reduce** builds up a single result from a list of values, aka `inject`, 4 | // or `foldl`. 5 | var reduce = _createReduce(1); 6 | 7 | module.exports = reduce; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isBoolean.js: -------------------------------------------------------------------------------- 1 | import { toString } from './_setup.js'; 2 | 3 | // Is a given value a boolean? 4 | export default function isBoolean(obj) { 5 | return obj === true || obj === false || toString.call(obj) === '[object Boolean]'; 6 | } 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_getLength.js: -------------------------------------------------------------------------------- 1 | define(['./_shallowProperty'], function (_shallowProperty) { 2 | 3 | // Internal helper to obtain the `length` property of an object. 4 | var getLength = _shallowProperty('length'); 5 | 6 | return getLength; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/now.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // A (possibly faster) way to get the current timestamp as an integer. 4 | var now = Date.now || function() { 5 | return new Date().getTime(); 6 | }; 7 | 8 | return now; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_unescapeMap.js: -------------------------------------------------------------------------------- 1 | var invert = require('./invert.js'); 2 | var _escapeMap = require('./_escapeMap.js'); 3 | 4 | // Internal list of HTML entities for unescaping. 5 | var unescapeMap = invert(_escapeMap); 6 | 7 | module.exports = unescapeMap; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_chainResult.js: -------------------------------------------------------------------------------- 1 | import _ from './underscore.js'; 2 | 3 | // Helper function to continue chaining intermediate results. 4 | export default function chainResult(instance, obj) { 5 | return instance._chain ? _(obj).chain() : obj; 6 | } 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/defaults.js: -------------------------------------------------------------------------------- 1 | define(['./_createAssigner', './allKeys'], function (_createAssigner, allKeys) { 2 | 3 | // Fill in a given object with default properties. 4 | var defaults = _createAssigner(allKeys, true); 5 | 6 | return defaults; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/escape.js: -------------------------------------------------------------------------------- 1 | define(['./_createEscaper', './_escapeMap'], function (_createEscaper, _escapeMap) { 2 | 3 | // Function for escaping strings to HTML interpolation. 4 | var _escape = _createEscaper(_escapeMap); 5 | 6 | return _escape; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_shallowProperty.js: -------------------------------------------------------------------------------- 1 | // Internal helper to generate a function to obtain property `key` from `obj`. 2 | export default function shallowProperty(key) { 3 | return function(obj) { 4 | return obj == null ? void 0 : obj[key]; 5 | }; 6 | } 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/zip.js: -------------------------------------------------------------------------------- 1 | import restArguments from './restArguments.js'; 2 | import unzip from './unzip.js'; 3 | 4 | // Zip together multiple lists into a single array -- elements that share 5 | // an index go together. 6 | export default restArguments(unzip); 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isNaN.js: -------------------------------------------------------------------------------- 1 | define(['./_setup', './isNumber'], function (_setup, isNumber) { 2 | 3 | // Is the given value `NaN`? 4 | function isNaN(obj) { 5 | return isNumber(obj) && _setup._isNaN(obj); 6 | } 7 | 8 | return isNaN; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_getByteLength.js: -------------------------------------------------------------------------------- 1 | var _shallowProperty = require('./_shallowProperty.js'); 2 | 3 | // Internal helper to obtain the `byteLength` property of an object. 4 | var getByteLength = _shallowProperty('byteLength'); 5 | 6 | module.exports = getByteLength; 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isNaN.js: -------------------------------------------------------------------------------- 1 | var _setup = require('./_setup.js'); 2 | var isNumber = require('./isNumber.js'); 3 | 4 | // Is the given value `NaN`? 5 | function isNaN(obj) { 6 | return isNumber(obj) && _setup._isNaN(obj); 7 | } 8 | 9 | module.exports = isNaN; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_has.js: -------------------------------------------------------------------------------- 1 | import { hasOwnProperty } from './_setup.js'; 2 | 3 | // Internal function to check whether `key` is an own property name of `obj`. 4 | export default function has(obj, key) { 5 | return obj != null && hasOwnProperty.call(obj, key); 6 | } 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isArray.js: -------------------------------------------------------------------------------- 1 | import { nativeIsArray } from './_setup.js'; 2 | import tagTester from './_tagTester.js'; 3 | 4 | // Is a given value an array? 5 | // Delegates to ECMA5's native `Array.isArray`. 6 | export default nativeIsArray || tagTester('Array'); 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-types/endpoint-with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, Endpoint, RequestOptions, Route, Parameters } from "./types"; 2 | export declare function endpointWithDefaults(defaults: Defaults, route: Route | Endpoint, options?: Parameters): RequestOptions; 3 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-types/endpoint-with-defaults.d.ts: -------------------------------------------------------------------------------- 1 | import { Defaults, Endpoint, RequestOptions, Route, Parameters } from "./types"; 2 | export declare function endpointWithDefaults(defaults: Defaults, route: Route | Endpoint, options?: Parameters): RequestOptions; 3 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/extend.js: -------------------------------------------------------------------------------- 1 | define(['./_createAssigner', './allKeys'], function (_createAssigner, allKeys) { 2 | 3 | // Extend a given object with all the properties in passed-in object(s). 4 | var extend = _createAssigner(allKeys); 5 | 6 | return extend; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/reduce.js: -------------------------------------------------------------------------------- 1 | define(['./_createReduce'], function (_createReduce) { 2 | 3 | // **Reduce** builds up a single result from a list of values, aka `inject`, 4 | // or `foldl`. 5 | var reduce = _createReduce(1); 6 | 7 | return reduce; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/defaults.js: -------------------------------------------------------------------------------- 1 | var _createAssigner = require('./_createAssigner.js'); 2 | var allKeys = require('./allKeys.js'); 3 | 4 | // Fill in a given object with default properties. 5 | var defaults = _createAssigner(allKeys, true); 6 | 7 | module.exports = defaults; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/escape.js: -------------------------------------------------------------------------------- 1 | var _createEscaper = require('./_createEscaper.js'); 2 | var _escapeMap = require('./_escapeMap.js'); 3 | 4 | // Function for escaping strings to HTML interpolation. 5 | var _escape = _createEscaper(_escapeMap); 6 | 7 | module.exports = _escape; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isBoolean.js: -------------------------------------------------------------------------------- 1 | var _setup = require('./_setup.js'); 2 | 3 | // Is a given value a boolean? 4 | function isBoolean(obj) { 5 | return obj === true || obj === false || _setup.toString.call(obj) === '[object Boolean]'; 6 | } 7 | 8 | module.exports = isBoolean; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/pluck.js: -------------------------------------------------------------------------------- 1 | import map from './map.js'; 2 | import property from './property.js'; 3 | 4 | // Convenience version of a common use case of `_.map`: fetching a property. 5 | export default function pluck(obj, key) { 6 | return map(obj, property(key)); 7 | } 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_getByteLength.js: -------------------------------------------------------------------------------- 1 | define(['./_shallowProperty'], function (_shallowProperty) { 2 | 3 | // Internal helper to obtain the `byteLength` property of an object. 4 | var getByteLength = _shallowProperty('byteLength'); 5 | 6 | return getByteLength; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/unescape.js: -------------------------------------------------------------------------------- 1 | define(['./_createEscaper', './_unescapeMap'], function (_createEscaper, _unescapeMap) { 2 | 3 | // Function for unescaping strings from HTML interpolation. 4 | var _unescape = _createEscaper(_unescapeMap); 5 | 6 | return _unescape; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_escapeMap.js: -------------------------------------------------------------------------------- 1 | // Internal list of HTML entities for escaping. 2 | var escapeMap = { 3 | '&': '&', 4 | '<': '<', 5 | '>': '>', 6 | '"': '"', 7 | "'": ''', 8 | '`': '`' 9 | }; 10 | 11 | module.exports = escapeMap; 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_has.js: -------------------------------------------------------------------------------- 1 | var _setup = require('./_setup.js'); 2 | 3 | // Internal function to check whether `key` is an own property name of `obj`. 4 | function has(obj, key) { 5 | return obj != null && _setup.hasOwnProperty.call(obj, key); 6 | } 7 | 8 | module.exports = has; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/findIndex.js: -------------------------------------------------------------------------------- 1 | var _createPredicateIndexFinder = require('./_createPredicateIndexFinder.js'); 2 | 3 | // Returns the first index on an array-like that passes a truth test. 4 | var findIndex = _createPredicateIndexFinder(1); 5 | 6 | module.exports = findIndex; 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_toPath.js: -------------------------------------------------------------------------------- 1 | import _ from './underscore.js'; 2 | import './toPath.js'; 3 | 4 | // Internal wrapper for `_.toPath` to enable minification. 5 | // Similar to `cb` for `_.iteratee`. 6 | export default function toPath(path) { 7 | return _.toPath(path); 8 | } 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/after.js: -------------------------------------------------------------------------------- 1 | // Returns a function that will only be executed on and after the Nth call. 2 | export default function after(times, func) { 3 | return function() { 4 | if (--times < 1) { 5 | return func.apply(this, arguments); 6 | } 7 | }; 8 | } 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/defer.js: -------------------------------------------------------------------------------- 1 | import partial from './partial.js'; 2 | import delay from './delay.js'; 3 | import _ from './underscore.js'; 4 | 5 | // Defers a function, scheduling it to run after the current call stack has 6 | // cleared. 7 | export default partial(delay, _, 1); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isMap.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | import { isIE11 } from './_stringTagBug.js'; 3 | import { ie11fingerprint, mapMethods } from './_methodFingerprint.js'; 4 | 5 | export default isIE11 ? ie11fingerprint(mapMethods) : tagTester('Map'); 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isSet.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | import { isIE11 } from './_stringTagBug.js'; 3 | import { ie11fingerprint, setMethods } from './_methodFingerprint.js'; 4 | 5 | export default isIE11 ? ie11fingerprint(setMethods) : tagTester('Set'); 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/random.js: -------------------------------------------------------------------------------- 1 | // Return a random integer between `min` and `max` (inclusive). 2 | export default function random(min, max) { 3 | if (max == null) { 4 | max = min; 5 | min = 0; 6 | } 7 | return min + Math.floor(Math.random() * (max - min + 1)); 8 | } 9 | -------------------------------------------------------------------------------- /pr-push/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | Object.defineProperty(exports, "__esModule", { value: true }); 5 | ; 6 | -------------------------------------------------------------------------------- /setup-r/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/Interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | Object.defineProperty(exports, "__esModule", { value: true }); 5 | ; 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isObject.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Is a given variable an object? 4 | function isObject(obj) { 5 | var type = typeof obj; 6 | return type === 'function' || type === 'object' && !!obj; 7 | } 8 | 9 | return isObject; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/extend.js: -------------------------------------------------------------------------------- 1 | var _createAssigner = require('./_createAssigner.js'); 2 | var allKeys = require('./allKeys.js'); 3 | 4 | // Extend a given object with all the properties in passed-in object(s). 5 | var extend = _createAssigner(allKeys); 6 | 7 | module.exports = extend; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/once.js: -------------------------------------------------------------------------------- 1 | import partial from './partial.js'; 2 | import before from './before.js'; 3 | 4 | // Returns a function that will be executed at most one time, no matter how 5 | // often you call it. Useful for lazy initialization. 6 | export default partial(before, 2); 7 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // Copyright (c) Microsoft. All rights reserved. 3 | // Licensed under the MIT license. See LICENSE file in the project root for full license information. 4 | Object.defineProperty(exports, "__esModule", { value: true }); 5 | ; 6 | -------------------------------------------------------------------------------- /pr-fetch/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /setup-pandoc/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/constant.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Predicate-generating function. Often useful outside of Underscore. 4 | function constant(value) { 5 | return function() { 6 | return value; 7 | }; 8 | } 9 | 10 | return constant; 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/findIndex.js: -------------------------------------------------------------------------------- 1 | define(['./_createPredicateIndexFinder'], function (_createPredicateIndexFinder) { 2 | 3 | // Returns the first index on an array-like that passes a truth test. 4 | var findIndex = _createPredicateIndexFinder(1); 5 | 6 | return findIndex; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_shallowProperty.js: -------------------------------------------------------------------------------- 1 | // Internal helper to generate a function to obtain property `key` from `obj`. 2 | function shallowProperty(key) { 3 | return function(obj) { 4 | return obj == null ? void 0 : obj[key]; 5 | }; 6 | } 7 | 8 | module.exports = shallowProperty; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/findLastIndex.js: -------------------------------------------------------------------------------- 1 | var _createPredicateIndexFinder = require('./_createPredicateIndexFinder.js'); 2 | 3 | // Returns the last index on an array-like that passes a truth test. 4 | var findLastIndex = _createPredicateIndexFinder(-1); 5 | 6 | module.exports = findLastIndex; 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/unescape.js: -------------------------------------------------------------------------------- 1 | var _createEscaper = require('./_createEscaper.js'); 2 | var _unescapeMap = require('./_unescapeMap.js'); 3 | 4 | // Function for unescaping strings from HTML interpolation. 5 | var _unescape = _createEscaper(_unescapeMap); 6 | 7 | module.exports = _unescape; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isFinite.js: -------------------------------------------------------------------------------- 1 | import { _isFinite } from './_setup.js'; 2 | import isSymbol from './isSymbol.js'; 3 | 4 | // Is a given object a finite number? 5 | export default function isFinite(obj) { 6 | return !isSymbol(obj) && _isFinite(obj) && !isNaN(parseFloat(obj)); 7 | } 8 | -------------------------------------------------------------------------------- /pr-fetch/action.yml: -------------------------------------------------------------------------------- 1 | name: 'pr-fetch' 2 | description: 'Fetch changes from a Pull Request branch' 3 | author: 'Jim Hester' 4 | inputs: 5 | repo-token: 6 | description: 'Token for the repo. Can be passed in using {{ secrets.GITHUB_TOKEN }}' 7 | runs: 8 | using: 'node12' 9 | main: 'lib/main.js' 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/plugins/register-endpoints/index.js: -------------------------------------------------------------------------------- 1 | module.exports = octokitRegisterEndpoints; 2 | 3 | const registerEndpoints = require("./register-endpoints"); 4 | 5 | function octokitRegisterEndpoints(octokit) { 6 | octokit.registerEndpoints = registerEndpoints.bind(null, octokit); 7 | } 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/zip.js: -------------------------------------------------------------------------------- 1 | define(['./restArguments', './unzip'], function (restArguments, unzip) { 2 | 3 | // Zip together multiple lists into a single array -- elements that share 4 | // an index go together. 5 | var zip = restArguments(unzip); 6 | 7 | return zip; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/chain.js: -------------------------------------------------------------------------------- 1 | var underscore = require('./underscore.js'); 2 | 3 | // Start chaining a wrapped Underscore object. 4 | function chain(obj) { 5 | var instance = underscore(obj); 6 | instance._chain = true; 7 | return instance; 8 | } 9 | 10 | module.exports = chain; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/zip.js: -------------------------------------------------------------------------------- 1 | var restArguments = require('./restArguments.js'); 2 | var unzip = require('./unzip.js'); 3 | 4 | // Zip together multiple lists into a single array -- elements that share 5 | // an index go together. 6 | var zip = restArguments(unzip); 7 | 8 | module.exports = zip; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/isWeakMap.js: -------------------------------------------------------------------------------- 1 | import tagTester from './_tagTester.js'; 2 | import { isIE11 } from './_stringTagBug.js'; 3 | import { ie11fingerprint, weakMapMethods } from './_methodFingerprint.js'; 4 | 5 | export default isIE11 ? ie11fingerprint(weakMapMethods) : tagTester('WeakMap'); 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/uniqueId.js: -------------------------------------------------------------------------------- 1 | // Generate a unique integer id (unique within the entire client session). 2 | // Useful for temporary DOM ids. 3 | var idCounter = 0; 4 | export default function uniqueId(prefix) { 5 | var id = ++idCounter + ''; 6 | return prefix ? prefix + id : id; 7 | } 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/uuid/lib/rng.js: -------------------------------------------------------------------------------- 1 | // Unique ID creation requires a high quality random # generator. In node.js 2 | // this is pretty straight-forward - we use the crypto API. 3 | 4 | var crypto = require('crypto'); 5 | 6 | module.exports = function nodeRNG() { 7 | return crypto.randomBytes(16); 8 | }; 9 | -------------------------------------------------------------------------------- /setup-tinytex/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | clearMocks: true, 3 | moduleFileExtensions: ['js', 'ts'], 4 | testEnvironment: 'node', 5 | testMatch: ['**/*.test.ts'], 6 | testRunner: 'jest-circus/runner', 7 | transform: { 8 | '^.+\\.ts$': 'ts-jest' 9 | }, 10 | verbose: true 11 | } -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/util/omit.js: -------------------------------------------------------------------------------- 1 | export function omit(object, keysToOmit) { 2 | return Object.keys(object) 3 | .filter(option => !keysToOmit.includes(option)) 4 | .reduce((obj, key) => { 5 | obj[key] = object[key]; 6 | return obj; 7 | }, {}); 8 | } 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/plugins/register-endpoints/index.js: -------------------------------------------------------------------------------- 1 | module.exports = octokitRegisterEndpoints; 2 | 3 | const registerEndpoints = require("./register-endpoints"); 4 | 5 | function octokitRegisterEndpoints(octokit) { 6 | octokit.registerEndpoints = registerEndpoints.bind(null, octokit); 7 | } 8 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/util/omit.js: -------------------------------------------------------------------------------- 1 | export function omit(object, keysToOmit) { 2 | return Object.keys(object) 3 | .filter(option => !keysToOmit.includes(option)) 4 | .reduce((obj, key) => { 5 | obj[key] = object[key]; 6 | return obj; 7 | }, {}); 8 | } 9 | -------------------------------------------------------------------------------- /setup-pandoc/action.yml: -------------------------------------------------------------------------------- 1 | name: 'Setup pandoc' 2 | description: 'Setup pandoc and add it to your PATH' 3 | author: 'Jim Hester' 4 | inputs: 5 | pandoc-version: 6 | description: 'Exact version of pandoc to use' 7 | default: '2.7.3' 8 | runs: 9 | using: 'node12' 10 | main: 'lib/setup-pandoc.js' 11 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/uuid/lib/rng.js: -------------------------------------------------------------------------------- 1 | // Unique ID creation requires a high quality random # generator. In node.js 2 | // this is pretty straight-forward - we use the crypto API. 3 | 4 | var crypto = require('crypto'); 5 | 6 | module.exports = function nodeRNG() { 7 | return crypto.randomBytes(16); 8 | }; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/findLastIndex.js: -------------------------------------------------------------------------------- 1 | define(['./_createPredicateIndexFinder'], function (_createPredicateIndexFinder) { 2 | 3 | // Returns the last index on an array-like that passes a truth test. 4 | var findLastIndex = _createPredicateIndexFinder(-1); 5 | 6 | return findLastIndex; 7 | 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_chainResult.js: -------------------------------------------------------------------------------- 1 | var underscore = require('./underscore.js'); 2 | 3 | // Helper function to continue chaining intermediate results. 4 | function chainResult(instance, obj) { 5 | return instance._chain ? underscore(obj).chain() : obj; 6 | } 7 | 8 | module.exports = chainResult; 9 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/uuid/lib/rng.js: -------------------------------------------------------------------------------- 1 | // Unique ID creation requires a high quality random # generator. In node.js 2 | // this is pretty straight-forward - we use the crypto API. 3 | 4 | var crypto = require('crypto'); 5 | 6 | module.exports = function nodeRNG() { 7 | return crypto.randomBytes(16); 8 | }; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/index-default.js: -------------------------------------------------------------------------------- 1 | define(['./index', './mixin'], function (index, mixin) { 2 | 3 | // Default Export 4 | 5 | // Add all of the Underscore functions to the wrapper object. 6 | var _ = mixin(index); 7 | // Legacy Node.js API. 8 | _._ = _; 9 | 10 | return _; 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isArray.js: -------------------------------------------------------------------------------- 1 | define(['./_setup', './_tagTester'], function (_setup, _tagTester) { 2 | 3 | // Is a given value an array? 4 | // Delegates to ECMA5's native `Array.isArray`. 5 | var isArray = _setup.nativeIsArray || _tagTester('Array'); 6 | 7 | return isArray; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isBoolean.js: -------------------------------------------------------------------------------- 1 | define(['./_setup'], function (_setup) { 2 | 3 | // Is a given value a boolean? 4 | function isBoolean(obj) { 5 | return obj === true || obj === false || _setup.toString.call(obj) === '[object Boolean]'; 6 | } 7 | 8 | return isBoolean; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/negate.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Returns a negated version of the passed-in predicate. 4 | function negate(predicate) { 5 | return function() { 6 | return !predicate.apply(this, arguments); 7 | }; 8 | } 9 | 10 | return negate; 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/pluck.js: -------------------------------------------------------------------------------- 1 | define(['./map', './property'], function (map, property) { 2 | 3 | // Convenience version of a common use case of `_.map`: fetching a property. 4 | function pluck(obj, key) { 5 | return map(obj, property(key)); 6 | } 7 | 8 | return pluck; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/after.js: -------------------------------------------------------------------------------- 1 | // Returns a function that will only be executed on and after the Nth call. 2 | function after(times, func) { 3 | return function() { 4 | if (--times < 1) { 5 | return func.apply(this, arguments); 6 | } 7 | }; 8 | } 9 | 10 | module.exports = after; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isArray.js: -------------------------------------------------------------------------------- 1 | var _setup = require('./_setup.js'); 2 | var _tagTester = require('./_tagTester.js'); 3 | 4 | // Is a given value an array? 5 | // Delegates to ECMA5's native `Array.isArray`. 6 | var isArray = _setup.nativeIsArray || _tagTester('Array'); 7 | 8 | module.exports = isArray; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/pluck.js: -------------------------------------------------------------------------------- 1 | var map = require('./map.js'); 2 | var property = require('./property.js'); 3 | 4 | // Convenience version of a common use case of `_.map`: fetching a property. 5 | function pluck(obj, key) { 6 | return map(obj, property(key)); 7 | } 8 | 9 | module.exports = pluck; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/indexBy.js: -------------------------------------------------------------------------------- 1 | import group from './_group.js'; 2 | 3 | // Indexes the object's values by a criterion, similar to `_.groupBy`, but for 4 | // when you know that your index values will be unique. 5 | export default group(function(result, value, key) { 6 | result[key] = value; 7 | }); 8 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/lib/register-plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = registerPlugin; 2 | 3 | const factory = require("./factory"); 4 | 5 | function registerPlugin(plugins, pluginFunction) { 6 | return factory( 7 | plugins.includes(pluginFunction) ? plugins : plugins.concat(pluginFunction) 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/lib/register-plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = registerPlugin; 2 | 3 | const factory = require("./factory"); 4 | 5 | function registerPlugin(plugins, pluginFunction) { 6 | return factory( 7 | plugins.includes(pluginFunction) ? plugins : plugins.concat(pluginFunction) 8 | ); 9 | } 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_has.js: -------------------------------------------------------------------------------- 1 | define(['./_setup'], function (_setup) { 2 | 3 | // Internal function to check whether `key` is an own property name of `obj`. 4 | function has(obj, key) { 5 | return obj != null && _setup.hasOwnProperty.call(obj, key); 6 | } 7 | 8 | return has; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_keyInObj.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Internal `_.pick` helper function to determine whether `key` is an enumerable 4 | // property name of `obj`. 5 | function keyInObj(value, key, obj) { 6 | return key in obj; 7 | } 8 | 9 | return keyInObj; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/random.js: -------------------------------------------------------------------------------- 1 | // Return a random integer between `min` and `max` (inclusive). 2 | function random(min, max) { 3 | if (max == null) { 4 | max = min; 5 | min = 0; 6 | } 7 | return min + Math.floor(Math.random() * (max - min + 1)); 8 | } 9 | 10 | module.exports = random; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/size.js: -------------------------------------------------------------------------------- 1 | import isArrayLike from './_isArrayLike.js'; 2 | import keys from './keys.js'; 3 | 4 | // Return the number of elements in a collection. 5 | export default function size(obj) { 6 | if (obj == null) return 0; 7 | return isArrayLike(obj) ? obj.length : keys(obj).length; 8 | } 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var stringify = require('./stringify'); 4 | var parse = require('./parse'); 5 | var formats = require('./formats'); 6 | 7 | module.exports = { 8 | formats: formats, 9 | parse: parse, 10 | stringify: stringify 11 | }; 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/defer.js: -------------------------------------------------------------------------------- 1 | define(['./partial', './delay', './underscore'], function (partial, delay, underscore) { 2 | 3 | // Defers a function, scheduling it to run after the current call stack has 4 | // cleared. 5 | var defer = partial(delay, underscore, 1); 6 | 7 | return defer; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/once.js: -------------------------------------------------------------------------------- 1 | define(['./partial', './before'], function (partial, before) { 2 | 3 | // Returns a function that will be executed at most one time, no matter how 4 | // often you call it. Useful for lazy initialization. 5 | var once = partial(before, 2); 6 | 7 | return once; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/index-default.js: -------------------------------------------------------------------------------- 1 | var index = require('./index.js'); 2 | var mixin = require('./mixin.js'); 3 | 4 | // Default Export 5 | 6 | // Add all of the Underscore functions to the wrapper object. 7 | var _ = mixin(index); 8 | // Legacy Node.js API. 9 | _._ = _; 10 | 11 | module.exports = _; 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/once.js: -------------------------------------------------------------------------------- 1 | var partial = require('./partial.js'); 2 | var before = require('./before.js'); 3 | 4 | // Returns a function that will be executed at most one time, no matter how 5 | // often you call it. Useful for lazy initialization. 6 | var once = partial(before, 2); 7 | 8 | module.exports = once; 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js: -------------------------------------------------------------------------------- 1 | export function lowercaseKeys(object) { 2 | if (!object) { 3 | return {}; 4 | } 5 | return Object.keys(object).reduce((newObj, key) => { 6 | newObj[key.toLowerCase()] = object[key]; 7 | return newObj; 8 | }, {}); 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/universal-user-agent/dist-web/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sources":["../dist-src/browser.js"],"sourcesContent":["export function getUserAgent() {\n return navigator.userAgent;\n}\n"],"names":[],"mappings":"AAAO,SAAS,YAAY,GAAG;IAC3B,OAAO,SAAS,CAAC,SAAS,CAAC;CAC9B;;;;"} -------------------------------------------------------------------------------- /setup-pandoc/node_modules/tunnel/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | - 0.0.4 (2016/01/23) 4 | - supported Node v0.12 or later. 5 | 6 | - 0.0.3 (2014/01/20) 7 | - fixed package.json 8 | 9 | - 0.0.1 (2012/02/18) 10 | - supported Node v0.6.x (0.6.11 or later). 11 | 12 | - 0.0.0 (2012/02/11) 13 | - first release. 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/chain.js: -------------------------------------------------------------------------------- 1 | define(['./underscore'], function (underscore) { 2 | 3 | // Start chaining a wrapped Underscore object. 4 | function chain(obj) { 5 | var instance = underscore(obj); 6 | instance._chain = true; 7 | return instance; 8 | } 9 | 10 | return chain; 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isFinite.js: -------------------------------------------------------------------------------- 1 | define(['./_setup', './isSymbol'], function (_setup, isSymbol) { 2 | 3 | // Is a given object a finite number? 4 | function isFinite(obj) { 5 | return !isSymbol(obj) && _setup._isFinite(obj) && !isNaN(parseFloat(obj)); 6 | } 7 | 8 | return isFinite; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isFinite.js: -------------------------------------------------------------------------------- 1 | var _setup = require('./_setup.js'); 2 | var isSymbol = require('./isSymbol.js'); 3 | 4 | // Is a given object a finite number? 5 | function isFinite(obj) { 6 | return !isSymbol(obj) && _setup._isFinite(obj) && !isNaN(parseFloat(obj)); 7 | } 8 | 9 | module.exports = isFinite; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/uniqueId.js: -------------------------------------------------------------------------------- 1 | // Generate a unique integer id (unique within the entire client session). 2 | // Useful for temporary DOM ids. 3 | var idCounter = 0; 4 | function uniqueId(prefix) { 5 | var id = ++idCounter + ''; 6 | return prefix ? prefix + id : id; 7 | } 8 | 9 | module.exports = uniqueId; 10 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/tunnel/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | - 0.0.4 (2016/01/23) 4 | - supported Node v0.12 or later. 5 | 6 | - 0.0.3 (2014/01/20) 7 | - fixed package.json 8 | 9 | - 0.0.1 (2012/02/18) 10 | - supported Node v0.6.x (0.6.11 or later). 11 | 12 | - 0.0.0 (2012/02/11) 13 | - first release. 14 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/dist-src/util/lowercase-keys.js: -------------------------------------------------------------------------------- 1 | export function lowercaseKeys(object) { 2 | if (!object) { 3 | return {}; 4 | } 5 | return Object.keys(object).reduce((newObj, key) => { 6 | newObj[key.toLowerCase()] = object[key]; 7 | return newObj; 8 | }, {}); 9 | } 10 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Handlers.d.ts: -------------------------------------------------------------------------------- 1 | export { BasicCredentialHandler } from "./handlers/basiccreds"; 2 | export { BearerCredentialHandler } from "./handlers/bearertoken"; 3 | export { NtlmCredentialHandler } from "./handlers/ntlm"; 4 | export { PersonalAccessTokenCredentialHandler } from "./handlers/personalaccesstoken"; 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/tunnel/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/Handlers.d.ts: -------------------------------------------------------------------------------- 1 | export { BasicCredentialHandler } from "./handlers/basiccreds"; 2 | export { BearerCredentialHandler } from "./handlers/bearertoken"; 3 | export { NtlmCredentialHandler } from "./handlers/ntlm"; 4 | export { PersonalAccessTokenCredentialHandler } from "./handlers/personalaccesstoken"; 5 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_chainResult.js: -------------------------------------------------------------------------------- 1 | define(['./underscore'], function (underscore) { 2 | 3 | // Helper function to continue chaining intermediate results. 4 | function chainResult(instance, obj) { 5 | return instance._chain ? underscore(obj).chain() : obj; 6 | } 7 | 8 | return chainResult; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isMap.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester', './_stringTagBug', './_methodFingerprint'], function (_tagTester, _stringTagBug, _methodFingerprint) { 2 | 3 | var isMap = _stringTagBug.isIE11 ? _methodFingerprint.ie11fingerprint(_methodFingerprint.mapMethods) : _tagTester('Map'); 4 | 5 | return isMap; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isSet.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester', './_stringTagBug', './_methodFingerprint'], function (_tagTester, _stringTagBug, _methodFingerprint) { 2 | 3 | var isSet = _stringTagBug.isIE11 ? _methodFingerprint.ie11fingerprint(_methodFingerprint.setMethods) : _tagTester('Set'); 4 | 5 | return isSet; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/reject.js: -------------------------------------------------------------------------------- 1 | import filter from './filter.js'; 2 | import negate from './negate.js'; 3 | import cb from './_cb.js'; 4 | 5 | // Return all the elements for which a truth test fails. 6 | export default function reject(obj, predicate, context) { 7 | return filter(obj, negate(cb(predicate)), context); 8 | } 9 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Handlers.d.ts: -------------------------------------------------------------------------------- 1 | export { BasicCredentialHandler } from "./handlers/basiccreds"; 2 | export { BearerCredentialHandler } from "./handlers/bearertoken"; 3 | export { NtlmCredentialHandler } from "./handlers/ntlm"; 4 | export { PersonalAccessTokenCredentialHandler } from "./handlers/personalaccesstoken"; 5 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/deprecate.js: -------------------------------------------------------------------------------- 1 | module.exports = deprecate 2 | 3 | const loggedMessages = {} 4 | 5 | function deprecate (message) { 6 | if (loggedMessages[message]) { 7 | return 8 | } 9 | 10 | console.warn(`DEPRECATED (@octokit/rest): ${message}`) 11 | loggedMessages[message] = 1 12 | } 13 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/deprecate.js: -------------------------------------------------------------------------------- 1 | module.exports = deprecate 2 | 3 | const loggedMessages = {} 4 | 5 | function deprecate (message) { 6 | if (loggedMessages[message]) { 7 | return 8 | } 9 | 10 | console.warn(`DEPRECATED (@octokit/rest): ${message}`) 11 | loggedMessages[message] = 1 12 | } 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_toPath.js: -------------------------------------------------------------------------------- 1 | var underscore = require('./underscore.js'); 2 | require('./toPath.js'); 3 | 4 | // Internal wrapper for `_.toPath` to enable minification. 5 | // Similar to `cb` for `_.iteratee`. 6 | function toPath(path) { 7 | return underscore.toPath(path); 8 | } 9 | 10 | module.exports = toPath; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/without.js: -------------------------------------------------------------------------------- 1 | import restArguments from './restArguments.js'; 2 | import difference from './difference.js'; 3 | 4 | // Return a version of the array that does not contain the specified value(s). 5 | export default restArguments(function(array, otherArrays) { 6 | return difference(array, otherArrays); 7 | }); 8 | -------------------------------------------------------------------------------- /run-rchk/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM rhub/ubuntu-rchk 2 | 3 | USER root 4 | RUN apt-get update 5 | RUN apt-get install sudo -y 6 | 7 | RUN echo "docker ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/user && \ 8 | chmod 0440 /etc/sudoers.d/user 9 | 10 | USER docker 11 | 12 | COPY entrypoint.sh /entrypoint.sh 13 | 14 | ENTRYPOINT ["/entrypoint.sh"] 15 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_escapeMap.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Internal list of HTML entities for escaping. 4 | var escapeMap = { 5 | '&': '&', 6 | '<': '<', 7 | '>': '>', 8 | '"': '"', 9 | "'": ''', 10 | '`': '`' 11 | }; 12 | 13 | return escapeMap; 14 | 15 | }); 16 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_tagTester.js: -------------------------------------------------------------------------------- 1 | import { toString } from './_setup.js'; 2 | 3 | // Internal function for creating a `toString`-based type tester. 4 | export default function tagTester(name) { 5 | var tag = '[object ' + name + ']'; 6 | return function(obj) { 7 | return toString.call(obj) === tag; 8 | }; 9 | } 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/lastIndexOf.js: -------------------------------------------------------------------------------- 1 | import findLastIndex from './findLastIndex.js'; 2 | import createIndexFinder from './_createIndexFinder.js'; 3 | 4 | // Return the position of the last occurrence of an item in an array, 5 | // or -1 if the item is not included in the array. 6 | export default createIndexFinder(-1, findLastIndex); 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_toPath.js: -------------------------------------------------------------------------------- 1 | define(['./underscore', './toPath'], function (underscore, toPath$1) { 2 | 3 | // Internal wrapper for `_.toPath` to enable minification. 4 | // Similar to `cb` for `_.iteratee`. 5 | function toPath(path) { 6 | return underscore.toPath(path); 7 | } 8 | 9 | return toPath; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/reject.js: -------------------------------------------------------------------------------- 1 | define(['./filter', './negate', './_cb'], function (filter, negate, _cb) { 2 | 3 | // Return all the elements for which a truth test fails. 4 | function reject(obj, predicate, context) { 5 | return filter(obj, negate(_cb(predicate)), context); 6 | } 7 | 8 | return reject; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/size.js: -------------------------------------------------------------------------------- 1 | define(['./_isArrayLike', './keys'], function (_isArrayLike, keys) { 2 | 3 | // Return the number of elements in a collection. 4 | function size(obj) { 5 | if (obj == null) return 0; 6 | return _isArrayLike(obj) ? obj.length : keys(obj).length; 7 | } 8 | 9 | return size; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/size.js: -------------------------------------------------------------------------------- 1 | var _isArrayLike = require('./_isArrayLike.js'); 2 | var keys = require('./keys.js'); 3 | 4 | // Return the number of elements in a collection. 5 | function size(obj) { 6 | if (obj == null) return 0; 7 | return _isArrayLike(obj) ? obj.length : keys(obj).length; 8 | } 9 | 10 | module.exports = size; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_isBufferLike.js: -------------------------------------------------------------------------------- 1 | import createSizePropertyCheck from './_createSizePropertyCheck.js'; 2 | import getByteLength from './_getByteLength.js'; 3 | 4 | // Internal helper to determine whether we should spend extensive checks against 5 | // `ArrayBuffer` et al. 6 | export default createSizePropertyCheck(getByteLength); 7 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/findWhere.js: -------------------------------------------------------------------------------- 1 | import find from './find.js'; 2 | import matcher from './matcher.js'; 3 | 4 | // Convenience version of a common use case of `_.find`: getting the first 5 | // object containing specific `key:value` pairs. 6 | export default function findWhere(obj, attrs) { 7 | return find(obj, matcher(attrs)); 8 | } 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/flatten.js: -------------------------------------------------------------------------------- 1 | import _flatten from './_flatten.js'; 2 | 3 | // Flatten out an array, either recursively (by default), or up to `depth`. 4 | // Passing `true` or `false` as `depth` means `1` or `Infinity`, respectively. 5 | export default function flatten(array, depth) { 6 | return _flatten(array, depth, false); 7 | } 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/partition.js: -------------------------------------------------------------------------------- 1 | import group from './_group.js'; 2 | 3 | // Split a collection into two arrays: one whose elements all pass the given 4 | // truth test, and one whose elements all do not pass the truth test. 5 | export default group(function(result, value, pass) { 6 | result[pass ? 0 : 1].push(value); 7 | }, true); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/where.js: -------------------------------------------------------------------------------- 1 | import filter from './filter.js'; 2 | import matcher from './matcher.js'; 3 | 4 | // Convenience version of a common use case of `_.filter`: selecting only 5 | // objects containing specific `key:value` pairs. 6 | export default function where(obj, attrs) { 7 | return filter(obj, matcher(attrs)); 8 | } 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/isWeakMap.js: -------------------------------------------------------------------------------- 1 | define(['./_tagTester', './_stringTagBug', './_methodFingerprint'], function (_tagTester, _stringTagBug, _methodFingerprint) { 2 | 3 | var isWeakMap = _stringTagBug.isIE11 ? _methodFingerprint.ie11fingerprint(_methodFingerprint.weakMapMethods) : _tagTester('WeakMap'); 4 | 5 | return isWeakMap; 6 | 7 | }); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/defer.js: -------------------------------------------------------------------------------- 1 | var partial = require('./partial.js'); 2 | var delay = require('./delay.js'); 3 | var underscore = require('./underscore.js'); 4 | 5 | // Defers a function, scheduling it to run after the current call stack has 6 | // cleared. 7 | var defer = partial(delay, underscore, 1); 8 | 9 | module.exports = defer; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/toPath.js: -------------------------------------------------------------------------------- 1 | import _ from './underscore.js'; 2 | import isArray from './isArray.js'; 3 | 4 | // Normalize a (deep) property `path` to array. 5 | // Like `_.iteratee`, this function can be customized. 6 | export default function toPath(path) { 7 | return isArray(path) ? path : [path]; 8 | } 9 | _.toPath = toPath; 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/plugins/pagination/index.js: -------------------------------------------------------------------------------- 1 | module.exports = paginatePlugin; 2 | 3 | const iterator = require("./iterator"); 4 | const paginate = require("./paginate"); 5 | 6 | function paginatePlugin(octokit) { 7 | octokit.paginate = paginate.bind(null, octokit); 8 | octokit.paginate.iterator = iterator.bind(null, octokit); 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/lib/factory.js: -------------------------------------------------------------------------------- 1 | module.exports = factory; 2 | 3 | const Octokit = require("./constructor"); 4 | const registerPlugin = require("./register-plugin"); 5 | 6 | function factory(plugins) { 7 | const Api = Octokit.bind(null, plugins || []); 8 | Api.plugin = registerPlugin.bind(null, plugins || []); 9 | return Api; 10 | } 11 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/rest/plugins/pagination/index.js: -------------------------------------------------------------------------------- 1 | module.exports = paginatePlugin; 2 | 3 | const iterator = require("./iterator"); 4 | const paginate = require("./paginate"); 5 | 6 | function paginatePlugin(octokit) { 7 | octokit.paginate = paginate.bind(null, octokit); 8 | octokit.paginate.iterator = iterator.bind(null, octokit); 9 | } 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_shallowProperty.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Internal helper to generate a function to obtain property `key` from `obj`. 4 | function shallowProperty(key) { 5 | return function(obj) { 6 | return obj == null ? void 0 : obj[key]; 7 | }; 8 | } 9 | 10 | return shallowProperty; 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/indexBy.js: -------------------------------------------------------------------------------- 1 | var _group = require('./_group.js'); 2 | 3 | // Indexes the object's values by a criterion, similar to `_.groupBy`, but for 4 | // when you know that your index values will be unique. 5 | var indexBy = _group(function(result, value, key) { 6 | result[key] = value; 7 | }); 8 | 9 | module.exports = indexBy; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/propertyOf.js: -------------------------------------------------------------------------------- 1 | import noop from './noop.js'; 2 | import get from './get.js'; 3 | 4 | // Generates a function for a given object that returns a given property. 5 | export default function propertyOf(obj) { 6 | if (obj == null) return noop; 7 | return function(path) { 8 | return get(obj, path); 9 | }; 10 | } 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/tap.js: -------------------------------------------------------------------------------- 1 | // Invokes `interceptor` with the `obj` and then returns `obj`. 2 | // The primary purpose of this method is to "tap into" a method chain, in 3 | // order to perform operations on intermediate results within the chain. 4 | export default function tap(obj, interceptor) { 5 | interceptor(obj); 6 | return obj; 7 | } 8 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/rest/lib/factory.js: -------------------------------------------------------------------------------- 1 | module.exports = factory; 2 | 3 | const Octokit = require("./constructor"); 4 | const registerPlugin = require("./register-plugin"); 5 | 6 | function factory(plugins) { 7 | const Api = Octokit.bind(null, plugins || []); 8 | Api.plugin = registerPlugin.bind(null, plugins || []); 9 | return Api; 10 | } 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isMap.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | var _stringTagBug = require('./_stringTagBug.js'); 3 | var _methodFingerprint = require('./_methodFingerprint.js'); 4 | 5 | var isMap = _stringTagBug.isIE11 ? _methodFingerprint.ie11fingerprint(_methodFingerprint.mapMethods) : _tagTester('Map'); 6 | 7 | module.exports = isMap; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isSet.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | var _stringTagBug = require('./_stringTagBug.js'); 3 | var _methodFingerprint = require('./_methodFingerprint.js'); 4 | 5 | var isSet = _stringTagBug.isIE11 ? _methodFingerprint.ie11fingerprint(_methodFingerprint.setMethods) : _tagTester('Set'); 6 | 7 | module.exports = isSet; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/_deepGet.js: -------------------------------------------------------------------------------- 1 | // Internal function to obtain a nested property in `obj` along `path`. 2 | export default function deepGet(obj, path) { 3 | var length = path.length; 4 | for (var i = 0; i < length; i++) { 5 | if (obj == null) return void 0; 6 | obj = obj[path[i]]; 7 | } 8 | return length ? obj : void 0; 9 | } 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/extendOwn.js: -------------------------------------------------------------------------------- 1 | import createAssigner from './_createAssigner.js'; 2 | import keys from './keys.js'; 3 | 4 | // Assigns a given object with all the own properties in the passed-in 5 | // object(s). 6 | // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) 7 | export default createAssigner(keys); 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/functions.js: -------------------------------------------------------------------------------- 1 | import isFunction from './isFunction.js'; 2 | 3 | // Return a sorted list of the function names available on the object. 4 | export default function functions(obj) { 5 | var names = []; 6 | for (var key in obj) { 7 | if (isFunction(obj[key])) names.push(key); 8 | } 9 | return names.sort(); 10 | } 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/after.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Returns a function that will only be executed on and after the Nth call. 4 | function after(times, func) { 5 | return function() { 6 | if (--times < 1) { 7 | return func.apply(this, arguments); 8 | } 9 | }; 10 | } 11 | 12 | return after; 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_tagTester.js: -------------------------------------------------------------------------------- 1 | var _setup = require('./_setup.js'); 2 | 3 | // Internal function for creating a `toString`-based type tester. 4 | function tagTester(name) { 5 | var tag = '[object ' + name + ']'; 6 | return function(obj) { 7 | return _setup.toString.call(obj) === tag; 8 | }; 9 | } 10 | 11 | module.exports = tagTester; 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/times.js: -------------------------------------------------------------------------------- 1 | import optimizeCb from './_optimizeCb.js'; 2 | 3 | // Run a function **n** times. 4 | export default function times(n, iteratee, context) { 5 | var accum = Array(Math.max(0, n)); 6 | iteratee = optimizeCb(iteratee, context, 1); 7 | for (var i = 0; i < n; i++) accum[i] = iteratee(i); 8 | return accum; 9 | } 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/wrap.js: -------------------------------------------------------------------------------- 1 | import partial from './partial.js'; 2 | 3 | // Returns the first function passed as an argument to the second, 4 | // allowing you to adjust arguments, run code before and after, and 5 | // conditionally execute the original function. 6 | export default function wrap(func, wrapper) { 7 | return partial(wrapper, func); 8 | } 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-types/fetch-wrapper.d.ts: -------------------------------------------------------------------------------- 1 | import { endpoint } from "./types"; 2 | export default function fetchWrapper(requestOptions: ReturnType & { 3 | redirect?: string; 4 | }): Promise<{ 5 | status: number; 6 | url: string; 7 | headers: { 8 | [header: string]: string; 9 | }; 10 | data: any; 11 | }>; 12 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/path-key/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = opts => { 3 | opts = opts || {}; 4 | 5 | const env = opts.env || process.env; 6 | const platform = opts.platform || process.platform; 7 | 8 | if (platform !== 'win32') { 9 | return 'PATH'; 10 | } 11 | 12 | return Object.keys(env).find(x => x.toUpperCase() === 'PATH') || 'Path'; 13 | }; 14 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-types/fetch-wrapper.d.ts: -------------------------------------------------------------------------------- 1 | import { endpoint } from "./types"; 2 | export default function fetchWrapper(requestOptions: ReturnType & { 3 | redirect?: string; 4 | }): Promise<{ 5 | status: number; 6 | url: string; 7 | headers: { 8 | [header: string]: string; 9 | }; 10 | data: any; 11 | }>; 12 | -------------------------------------------------------------------------------- /pr-push/node_modules/path-key/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = opts => { 3 | opts = opts || {}; 4 | 5 | const env = opts.env || process.env; 6 | const platform = opts.platform || process.platform; 7 | 8 | if (platform !== 'win32') { 9 | return 'PATH'; 10 | } 11 | 12 | return Object.keys(env).find(x => x.toUpperCase() === 'PATH') || 'Path'; 13 | }; 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/clone.js: -------------------------------------------------------------------------------- 1 | define(['./isObject', './isArray', './extend'], function (isObject, isArray, extend) { 2 | 3 | // Create a (shallow-cloned) duplicate of an object. 4 | function clone(obj) { 5 | if (!isObject(obj)) return obj; 6 | return isArray(obj) ? obj.slice() : extend({}, obj); 7 | } 8 | 9 | return clone; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/random.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Return a random integer between `min` and `max` (inclusive). 4 | function random(min, max) { 5 | if (max == null) { 6 | max = min; 7 | min = 0; 8 | } 9 | return min + Math.floor(Math.random() * (max - min + 1)); 10 | } 11 | 12 | return random; 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/reject.js: -------------------------------------------------------------------------------- 1 | var filter = require('./filter.js'); 2 | var negate = require('./negate.js'); 3 | var _cb = require('./_cb.js'); 4 | 5 | // Return all the elements for which a truth test fails. 6 | function reject(obj, predicate, context) { 7 | return filter(obj, negate(_cb(predicate)), context); 8 | } 9 | 10 | module.exports = reject; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/clone.js: -------------------------------------------------------------------------------- 1 | import isObject from './isObject.js'; 2 | import isArray from './isArray.js'; 3 | import extend from './extend.js'; 4 | 5 | // Create a (shallow-cloned) duplicate of an object. 6 | export default function clone(obj) { 7 | if (!isObject(obj)) return obj; 8 | return isArray(obj) ? obj.slice() : extend({}, obj); 9 | } 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/isobject/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * isobject 3 | * 4 | * Copyright (c) 2014-2017, Jon Schlinkert. 5 | * Released under the MIT License. 6 | */ 7 | 8 | export default function isObject(val) { 9 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 10 | }; 11 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/isobject/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * isobject 3 | * 4 | * Copyright (c) 2014-2017, Jon Schlinkert. 5 | * Released under the MIT License. 6 | */ 7 | 8 | export default function isObject(val) { 9 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 10 | }; 11 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/isobject/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * isobject 3 | * 4 | * Copyright (c) 2014-2017, Jon Schlinkert. 5 | * Released under the MIT License. 6 | */ 7 | 8 | export default function isObject(val) { 9 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 10 | }; 11 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/isobject/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * isobject 3 | * 4 | * Copyright (c) 2014-2017, Jon Schlinkert. 5 | * Released under the MIT License. 6 | */ 7 | 8 | export default function isObject(val) { 9 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 10 | }; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/indexBy.js: -------------------------------------------------------------------------------- 1 | define(['./_group'], function (_group) { 2 | 3 | // Indexes the object's values by a criterion, similar to `_.groupBy`, but for 4 | // when you know that your index values will be unique. 5 | var indexBy = _group(function(result, value, key) { 6 | result[key] = value; 7 | }); 8 | 9 | return indexBy; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/where.js: -------------------------------------------------------------------------------- 1 | define(['./filter', './matcher'], function (filter, matcher) { 2 | 3 | // Convenience version of a common use case of `_.filter`: selecting only 4 | // objects containing specific `key:value` pairs. 5 | function where(obj, attrs) { 6 | return filter(obj, matcher(attrs)); 7 | } 8 | 9 | return where; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/flatten.js: -------------------------------------------------------------------------------- 1 | var _flatten = require('./_flatten.js'); 2 | 3 | // Flatten out an array, either recursively (by default), or up to `depth`. 4 | // Passing `true` or `false` as `depth` means `1` or `Infinity`, respectively. 5 | function flatten(array, depth) { 6 | return _flatten(array, depth, false); 7 | } 8 | 9 | module.exports = flatten; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/tap.js: -------------------------------------------------------------------------------- 1 | // Invokes `interceptor` with the `obj` and then returns `obj`. 2 | // The primary purpose of this method is to "tap into" a method chain, in 3 | // order to perform operations on intermediate results within the chain. 4 | function tap(obj, interceptor) { 5 | interceptor(obj); 6 | return obj; 7 | } 8 | 9 | module.exports = tap; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/where.js: -------------------------------------------------------------------------------- 1 | var filter = require('./filter.js'); 2 | var matcher = require('./matcher.js'); 3 | 4 | // Convenience version of a common use case of `_.filter`: selecting only 5 | // objects containing specific `key:value` pairs. 6 | function where(obj, attrs) { 7 | return filter(obj, matcher(attrs)); 8 | } 9 | 10 | module.exports = where; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/findWhere.js: -------------------------------------------------------------------------------- 1 | define(['./find', './matcher'], function (find, matcher) { 2 | 3 | // Convenience version of a common use case of `_.find`: getting the first 4 | // object containing specific `key:value` pairs. 5 | function findWhere(obj, attrs) { 6 | return find(obj, matcher(attrs)); 7 | } 8 | 9 | return findWhere; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/uniqueId.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Generate a unique integer id (unique within the entire client session). 4 | // Useful for temporary DOM ids. 5 | var idCounter = 0; 6 | function uniqueId(prefix) { 7 | var id = ++idCounter + ''; 8 | return prefix ? prefix + id : id; 9 | } 10 | 11 | return uniqueId; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/without.js: -------------------------------------------------------------------------------- 1 | define(['./restArguments', './difference'], function (restArguments, difference) { 2 | 3 | // Return a version of the array that does not contain the specified value(s). 4 | var without = restArguments(function(array, otherArrays) { 5 | return difference(array, otherArrays); 6 | }); 7 | 8 | return without; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_deepGet.js: -------------------------------------------------------------------------------- 1 | // Internal function to obtain a nested property in `obj` along `path`. 2 | function deepGet(obj, path) { 3 | var length = path.length; 4 | for (var i = 0; i < length; i++) { 5 | if (obj == null) return void 0; 6 | obj = obj[path[i]]; 7 | } 8 | return length ? obj : void 0; 9 | } 10 | 11 | module.exports = deepGet; 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/findWhere.js: -------------------------------------------------------------------------------- 1 | var find = require('./find.js'); 2 | var matcher = require('./matcher.js'); 3 | 4 | // Convenience version of a common use case of `_.find`: getting the first 5 | // object containing specific `key:value` pairs. 6 | function findWhere(obj, attrs) { 7 | return find(obj, matcher(attrs)); 8 | } 9 | 10 | module.exports = findWhere; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/isWeakMap.js: -------------------------------------------------------------------------------- 1 | var _tagTester = require('./_tagTester.js'); 2 | var _stringTagBug = require('./_stringTagBug.js'); 3 | var _methodFingerprint = require('./_methodFingerprint.js'); 4 | 5 | var isWeakMap = _stringTagBug.isIE11 ? _methodFingerprint.ie11fingerprint(_methodFingerprint.weakMapMethods) : _tagTester('WeakMap'); 6 | 7 | module.exports = isWeakMap; 8 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/propertyOf.js: -------------------------------------------------------------------------------- 1 | var noop = require('./noop.js'); 2 | var get = require('./get.js'); 3 | 4 | // Generates a function for a given object that returns a given property. 5 | function propertyOf(obj) { 6 | if (obj == null) return noop; 7 | return function(path) { 8 | return get(obj, path); 9 | }; 10 | } 11 | 12 | module.exports = propertyOf; 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/delay.js: -------------------------------------------------------------------------------- 1 | import restArguments from './restArguments.js'; 2 | 3 | // Delays a function for the given number of milliseconds, and then calls 4 | // it with the arguments supplied. 5 | export default restArguments(function(func, wait, args) { 6 | return setTimeout(function() { 7 | return func.apply(null, args); 8 | }, wait); 9 | }); 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/rest.js: -------------------------------------------------------------------------------- 1 | import { slice } from './_setup.js'; 2 | 3 | // Returns everything but the first entry of the `array`. Especially useful on 4 | // the `arguments` object. Passing an **n** will return the rest N values in the 5 | // `array`. 6 | export default function rest(array, n, guard) { 7 | return slice.call(array, n == null || guard ? 1 : n); 8 | } 9 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/nice-try/src/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /** 4 | * Tries to execute a function and discards any error that occurs. 5 | * @param {Function} fn - Function that might or might not throw an error. 6 | * @returns {?*} Return-value of the function when no error occurred. 7 | */ 8 | module.exports = function(fn) { 9 | 10 | try { return fn() } catch (e) {} 11 | 12 | } -------------------------------------------------------------------------------- /pr-push/node_modules/nice-try/src/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | /** 4 | * Tries to execute a function and discards any error that occurs. 5 | * @param {Function} fn - Function that might or might not throw an error. 6 | * @returns {?*} Return-value of the function when no error occurred. 7 | */ 8 | module.exports = function(fn) { 9 | 10 | try { return fn() } catch (e) {} 11 | 12 | } -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/propertyOf.js: -------------------------------------------------------------------------------- 1 | define(['./noop', './get'], function (noop, get) { 2 | 3 | // Generates a function for a given object that returns a given property. 4 | function propertyOf(obj) { 5 | if (obj == null) return noop; 6 | return function(path) { 7 | return get(obj, path); 8 | }; 9 | } 10 | 11 | return propertyOf; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/functions.js: -------------------------------------------------------------------------------- 1 | var isFunction = require('./isFunction.js'); 2 | 3 | // Return a sorted list of the function names available on the object. 4 | function functions(obj) { 5 | var names = []; 6 | for (var key in obj) { 7 | if (isFunction(obj[key])) names.push(key); 8 | } 9 | return names.sort(); 10 | } 11 | 12 | module.exports = functions; 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/times.js: -------------------------------------------------------------------------------- 1 | var _optimizeCb = require('./_optimizeCb.js'); 2 | 3 | // Run a function **n** times. 4 | function times(n, iteratee, context) { 5 | var accum = Array(Math.max(0, n)); 6 | iteratee = _optimizeCb(iteratee, context, 1); 7 | for (var i = 0; i < n; i++) accum[i] = iteratee(i); 8 | return accum; 9 | } 10 | 11 | module.exports = times; 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/without.js: -------------------------------------------------------------------------------- 1 | var restArguments = require('./restArguments.js'); 2 | var difference = require('./difference.js'); 3 | 4 | // Return a version of the array that does not contain the specified value(s). 5 | var without = restArguments(function(array, otherArrays) { 6 | return difference(array, otherArrays); 7 | }); 8 | 9 | module.exports = without; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_tagTester.js: -------------------------------------------------------------------------------- 1 | define(['./_setup'], function (_setup) { 2 | 3 | // Internal function for creating a `toString`-based type tester. 4 | function tagTester(name) { 5 | var tag = '[object ' + name + ']'; 6 | return function(obj) { 7 | return _setup.toString.call(obj) === tag; 8 | }; 9 | } 10 | 11 | return tagTester; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/lastIndexOf.js: -------------------------------------------------------------------------------- 1 | define(['./findLastIndex', './_createIndexFinder'], function (findLastIndex, _createIndexFinder) { 2 | 3 | // Return the position of the last occurrence of an item in an array, 4 | // or -1 if the item is not included in the array. 5 | var lastIndexOf = _createIndexFinder(-1, findLastIndex); 6 | 7 | return lastIndexOf; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/lastIndexOf.js: -------------------------------------------------------------------------------- 1 | var findLastIndex = require('./findLastIndex.js'); 2 | var _createIndexFinder = require('./_createIndexFinder.js'); 3 | 4 | // Return the position of the last occurrence of an item in an array, 5 | // or -1 if the item is not included in the array. 6 | var lastIndexOf = _createIndexFinder(-1, findLastIndex); 7 | 8 | module.exports = lastIndexOf; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/wrap.js: -------------------------------------------------------------------------------- 1 | var partial = require('./partial.js'); 2 | 3 | // Returns the first function passed as an argument to the second, 4 | // allowing you to adjust arguments, run code before and after, and 5 | // conditionally execute the original function. 6 | function wrap(func, wrapper) { 7 | return partial(wrapper, func); 8 | } 9 | 10 | module.exports = wrap; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/values.js: -------------------------------------------------------------------------------- 1 | import keys from './keys.js'; 2 | 3 | // Retrieve the values of an object's properties. 4 | export default function values(obj) { 5 | var _keys = keys(obj); 6 | var length = _keys.length; 7 | var values = Array(length); 8 | for (var i = 0; i < length; i++) { 9 | values[i] = obj[_keys[i]]; 10 | } 11 | return values; 12 | } 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/node_modules/qs/.github/workflows/rebase.yml: -------------------------------------------------------------------------------- 1 | name: Automatic Rebase 2 | 3 | on: [pull_request] 4 | 5 | jobs: 6 | _: 7 | name: "Automatic Rebase" 8 | 9 | runs-on: ubuntu-latest 10 | 11 | steps: 12 | - uses: actions/checkout@v1 13 | - uses: ljharb/rebase@master 14 | env: 15 | GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 16 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_isBufferLike.js: -------------------------------------------------------------------------------- 1 | define(['./_createSizePropertyCheck', './_getByteLength'], function (_createSizePropertyCheck, _getByteLength) { 2 | 3 | // Internal helper to determine whether we should spend extensive checks against 4 | // `ArrayBuffer` et al. 5 | var isBufferLike = _createSizePropertyCheck(_getByteLength); 6 | 7 | return isBufferLike; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/flatten.js: -------------------------------------------------------------------------------- 1 | define(['./_flatten'], function (_flatten) { 2 | 3 | // Flatten out an array, either recursively (by default), or up to `depth`. 4 | // Passing `true` or `false` as `depth` means `1` or `Infinity`, respectively. 5 | function flatten(array, depth) { 6 | return _flatten(array, depth, false); 7 | } 8 | 9 | return flatten; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/toPath.js: -------------------------------------------------------------------------------- 1 | define(['./underscore', './isArray'], function (underscore, isArray) { 2 | 3 | // Normalize a (deep) property `path` to array. 4 | // Like `_.iteratee`, this function can be customized. 5 | function toPath(path) { 6 | return isArray(path) ? path : [path]; 7 | } 8 | underscore.toPath = toPath; 9 | 10 | return toPath; 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/_isBufferLike.js: -------------------------------------------------------------------------------- 1 | var _createSizePropertyCheck = require('./_createSizePropertyCheck.js'); 2 | var _getByteLength = require('./_getByteLength.js'); 3 | 4 | // Internal helper to determine whether we should spend extensive checks against 5 | // `ArrayBuffer` et al. 6 | var isBufferLike = _createSizePropertyCheck(_getByteLength); 7 | 8 | module.exports = isBufferLike; 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/clone.js: -------------------------------------------------------------------------------- 1 | var isObject = require('./isObject.js'); 2 | var isArray = require('./isArray.js'); 3 | var extend = require('./extend.js'); 4 | 5 | // Create a (shallow-cloned) duplicate of an object. 6 | function clone(obj) { 7 | if (!isObject(obj)) return obj; 8 | return isArray(obj) ? obj.slice() : extend({}, obj); 9 | } 10 | 11 | module.exports = clone; 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/partition.js: -------------------------------------------------------------------------------- 1 | var _group = require('./_group.js'); 2 | 3 | // Split a collection into two arrays: one whose elements all pass the given 4 | // truth test, and one whose elements all do not pass the truth test. 5 | var partition = _group(function(result, value, pass) { 6 | result[pass ? 0 : 1].push(value); 7 | }, true); 8 | 9 | module.exports = partition; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/toPath.js: -------------------------------------------------------------------------------- 1 | var underscore = require('./underscore.js'); 2 | var isArray = require('./isArray.js'); 3 | 4 | // Normalize a (deep) property `path` to array. 5 | // Like `_.iteratee`, this function can be customized. 6 | function toPath(path) { 7 | return isArray(path) ? path : [path]; 8 | } 9 | underscore.toPath = toPath; 10 | 11 | module.exports = toPath; 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/before.js: -------------------------------------------------------------------------------- 1 | // Returns a function that will only be executed up to (but not including) the 2 | // Nth call. 3 | export default function before(times, func) { 4 | var memo; 5 | return function() { 6 | if (--times > 0) { 7 | memo = func.apply(this, arguments); 8 | } 9 | if (times <= 1) func = null; 10 | return memo; 11 | }; 12 | } 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/groupBy.js: -------------------------------------------------------------------------------- 1 | import group from './_group.js'; 2 | import has from './_has.js'; 3 | 4 | // Groups the object's values by a criterion. Pass either a string attribute 5 | // to group by, or a function that returns the criterion. 6 | export default group(function(result, value, key) { 7 | if (has(result, key)) result[key].push(value); else result[key] = [value]; 8 | }); 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/templateSettings.js: -------------------------------------------------------------------------------- 1 | import _ from './underscore.js'; 2 | 3 | // By default, Underscore uses ERB-style template delimiters. Change the 4 | // following template settings to use alternative delimiters. 5 | export default _.templateSettings = { 6 | evaluate: /<%([\s\S]+?)%>/g, 7 | interpolate: /<%=([\s\S]+?)%>/g, 8 | escape: /<%-([\s\S]+?)%>/g 9 | }; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/union.js: -------------------------------------------------------------------------------- 1 | import restArguments from './restArguments.js'; 2 | import uniq from './uniq.js'; 3 | import flatten from './_flatten.js'; 4 | 5 | // Produce an array that contains the union: each distinct element from all of 6 | // the passed-in arrays. 7 | export default restArguments(function(arrays) { 8 | return uniq(flatten(arrays, true, true)); 9 | }); 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/p-finally/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = (promise, onFinally) => { 3 | onFinally = onFinally || (() => {}); 4 | 5 | return promise.then( 6 | val => new Promise(resolve => { 7 | resolve(onFinally()); 8 | }).then(() => val), 9 | err => new Promise(resolve => { 10 | resolve(onFinally()); 11 | }).then(() => { 12 | throw err; 13 | }) 14 | ); 15 | }; 16 | -------------------------------------------------------------------------------- /pr-push/node_modules/p-finally/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = (promise, onFinally) => { 3 | onFinally = onFinally || (() => {}); 4 | 5 | return promise.then( 6 | val => new Promise(resolve => { 7 | resolve(onFinally()); 8 | }).then(() => val), 9 | err => new Promise(resolve => { 10 | resolve(onFinally()); 11 | }).then(() => { 12 | throw err; 13 | }) 14 | ); 15 | }; 16 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/invert.js: -------------------------------------------------------------------------------- 1 | import keys from './keys.js'; 2 | 3 | // Invert the keys and values of an object. The values must be serializable. 4 | export default function invert(obj) { 5 | var result = {}; 6 | var _keys = keys(obj); 7 | for (var i = 0, length = _keys.length; i < length; i++) { 8 | result[obj[_keys[i]]] = _keys[i]; 9 | } 10 | return result; 11 | } 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/matcher.js: -------------------------------------------------------------------------------- 1 | import extendOwn from './extendOwn.js'; 2 | import isMatch from './isMatch.js'; 3 | 4 | // Returns a predicate for checking whether an object has a given set of 5 | // `key:value` pairs. 6 | export default function matcher(attrs) { 7 | attrs = extendOwn({}, attrs); 8 | return function(obj) { 9 | return isMatch(obj, attrs); 10 | }; 11 | } 12 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- 1 | cff-version: 1.1.0 2 | message: "If you use this software, please cite it using these metadata." 3 | authors: 4 | - family-names: Hester 5 | given-names: Jim 6 | orcid: "https://orcid.org/0000-0002-2739-7082" 7 | title: "GitHub Actions for the R language" 8 | version: 1.0.0 9 | date-released: 2021-07-06 10 | license: "CC0-1.0" 11 | repository-code: "https://github.com/r-lib/actions" 12 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/Util.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * creates an url from a request url and optional base url (http://server:8080) 3 | * @param {string} resource - a fully qualified url or relative path 4 | * @param {string} baseUrl - an optional baseUrl (http://server:8080) 5 | * @return {string} - resultant url 6 | */ 7 | export declare function getUrl(resource: string, baseUrl?: string): string; 8 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/typed-rest-client/opensource/node-http-ntlm/readme.txt: -------------------------------------------------------------------------------- 1 | // This software (ntlm.js) was copied from a file of the same name at https://github.com/SamDecrock/node-http-ntlm/blob/master/ntlm.js. 2 | // 3 | // As of this writing, it is a part of the node-http-ntlm module produced by SamDecrock. 4 | // 5 | // It is used as a part of the NTLM support provided by the vso-node-api library. 6 | // 7 | -------------------------------------------------------------------------------- /setup-r/.github/r.json: -------------------------------------------------------------------------------- 1 | { 2 | "problemMatcher": [ 3 | { 4 | "owner": "r", 5 | "pattern": [ 6 | { 7 | "regexp": "^(Error|Warning)(?: in (.*) )?: (.*)$", 8 | "severity": 1, 9 | "code": 2, 10 | "message": 3 11 | } 12 | ] 13 | } 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/extendOwn.js: -------------------------------------------------------------------------------- 1 | define(['./_createAssigner', './keys'], function (_createAssigner, keys) { 2 | 3 | // Assigns a given object with all the own properties in the passed-in 4 | // object(s). 5 | // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) 6 | var extendOwn = _createAssigner(keys); 7 | 8 | return extendOwn; 9 | 10 | }); 11 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/Util.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * creates an url from a request url and optional base url (http://server:8080) 3 | * @param {string} resource - a fully qualified url or relative path 4 | * @param {string} baseUrl - an optional baseUrl (http://server:8080) 5 | * @return {string} - resultant url 6 | */ 7 | export declare function getUrl(resource: string, baseUrl?: string): string; 8 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/typed-rest-client/opensource/node-http-ntlm/readme.txt: -------------------------------------------------------------------------------- 1 | // This software (ntlm.js) was copied from a file of the same name at https://github.com/SamDecrock/node-http-ntlm/blob/master/ntlm.js. 2 | // 3 | // As of this writing, it is a part of the node-http-ntlm module produced by SamDecrock. 4 | // 5 | // It is used as a part of the NTLM support provided by the vso-node-api library. 6 | // 7 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/dist-src/index.js: -------------------------------------------------------------------------------- 1 | import { endpoint } from "@octokit/endpoint"; 2 | import { getUserAgent } from "universal-user-agent"; 3 | import { VERSION } from "./version"; 4 | import withDefaults from "./with-defaults"; 5 | export const request = withDefaults(endpoint, { 6 | headers: { 7 | "user-agent": `octokit-request.js/${VERSION} ${getUserAgent()}` 8 | } 9 | }); 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/deprecation/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export class Deprecation extends Error { 2 | constructor(message) { 3 | super(message); // Maintains proper stack trace (only available on V8) 4 | 5 | /* istanbul ignore next */ 6 | 7 | if (Error.captureStackTrace) { 8 | Error.captureStackTrace(this, this.constructor); 9 | } 10 | 11 | this.name = 'Deprecation'; 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/dist-src/index.js: -------------------------------------------------------------------------------- 1 | import { endpoint } from "@octokit/endpoint"; 2 | import { getUserAgent } from "universal-user-agent"; 3 | import { VERSION } from "./version"; 4 | import withDefaults from "./with-defaults"; 5 | export const request = withDefaults(endpoint, { 6 | headers: { 7 | "user-agent": `octokit-request.js/${VERSION} ${getUserAgent()}` 8 | } 9 | }); 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/deprecation/dist-src/index.js: -------------------------------------------------------------------------------- 1 | export class Deprecation extends Error { 2 | constructor(message) { 3 | super(message); // Maintains proper stack trace (only available on V8) 4 | 5 | /* istanbul ignore next */ 6 | 7 | if (Error.captureStackTrace) { 8 | Error.captureStackTrace(this, this.constructor); 9 | } 10 | 11 | this.name = 'Deprecation'; 12 | } 13 | 14 | } -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/functions.js: -------------------------------------------------------------------------------- 1 | define(['./isFunction'], function (isFunction) { 2 | 3 | // Return a sorted list of the function names available on the object. 4 | function functions(obj) { 5 | var names = []; 6 | for (var key in obj) { 7 | if (isFunction(obj[key])) names.push(key); 8 | } 9 | return names.sort(); 10 | } 11 | 12 | return functions; 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/times.js: -------------------------------------------------------------------------------- 1 | define(['./_optimizeCb'], function (_optimizeCb) { 2 | 3 | // Run a function **n** times. 4 | function times(n, iteratee, context) { 5 | var accum = Array(Math.max(0, n)); 6 | iteratee = _optimizeCb(iteratee, context, 1); 7 | for (var i = 0; i < n; i++) accum[i] = iteratee(i); 8 | return accum; 9 | } 10 | 11 | return times; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/union.js: -------------------------------------------------------------------------------- 1 | define(['./restArguments', './uniq', './_flatten'], function (restArguments, uniq, _flatten) { 2 | 3 | // Produce an array that contains the union: each distinct element from all of 4 | // the passed-in arrays. 5 | var union = restArguments(function(arrays) { 6 | return uniq(_flatten(arrays, true, true)); 7 | }); 8 | 9 | return union; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/before.js: -------------------------------------------------------------------------------- 1 | // Returns a function that will only be executed up to (but not including) the 2 | // Nth call. 3 | function before(times, func) { 4 | var memo; 5 | return function() { 6 | if (--times > 0) { 7 | memo = func.apply(this, arguments); 8 | } 9 | if (times <= 1) func = null; 10 | return memo; 11 | }; 12 | } 13 | 14 | module.exports = before; 15 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/delay.js: -------------------------------------------------------------------------------- 1 | var restArguments = require('./restArguments.js'); 2 | 3 | // Delays a function for the given number of milliseconds, and then calls 4 | // it with the arguments supplied. 5 | var delay = restArguments(function(func, wait, args) { 6 | return setTimeout(function() { 7 | return func.apply(null, args); 8 | }, wait); 9 | }); 10 | 11 | module.exports = delay; 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/rest.js: -------------------------------------------------------------------------------- 1 | var _setup = require('./_setup.js'); 2 | 3 | // Returns everything but the first entry of the `array`. Especially useful on 4 | // the `arguments` object. Passing an **n** will return the rest N values in the 5 | // `array`. 6 | function rest(array, n, guard) { 7 | return _setup.slice.call(array, n == null || guard ? 1 : n); 8 | } 9 | 10 | module.exports = rest; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/values.js: -------------------------------------------------------------------------------- 1 | var keys = require('./keys.js'); 2 | 3 | // Retrieve the values of an object's properties. 4 | function values(obj) { 5 | var _keys = keys(obj); 6 | var length = _keys.length; 7 | var values = Array(length); 8 | for (var i = 0; i < length; i++) { 9 | values[i] = obj[_keys[i]]; 10 | } 11 | return values; 12 | } 13 | 14 | module.exports = values; 15 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/strip-eof/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (x) { 3 | var lf = typeof x === 'string' ? '\n' : '\n'.charCodeAt(); 4 | var cr = typeof x === 'string' ? '\r' : '\r'.charCodeAt(); 5 | 6 | if (x[x.length - 1] === lf) { 7 | x = x.slice(0, x.length - 1); 8 | } 9 | 10 | if (x[x.length - 1] === cr) { 11 | x = x.slice(0, x.length - 1); 12 | } 13 | 14 | return x; 15 | }; 16 | -------------------------------------------------------------------------------- /pr-push/action.yml: -------------------------------------------------------------------------------- 1 | name: 'pr-push' 2 | description: 'Push changes back to a Pull Request branch' 3 | author: 'Jim Hester' 4 | inputs: 5 | repo-token: 6 | description: 'Token for the repo. Can be passed in using {{ secrets.GITHUB_TOKEN }}' 7 | args: 8 | description: 'String of additional command line args to `git push`' 9 | default: '-q' 10 | runs: 11 | using: 'node12' 12 | main: 'lib/main.js' 13 | -------------------------------------------------------------------------------- /pr-push/node_modules/strip-eof/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (x) { 3 | var lf = typeof x === 'string' ? '\n' : '\n'.charCodeAt(); 4 | var cr = typeof x === 'string' ? '\r' : '\r'.charCodeAt(); 5 | 6 | if (x[x.length - 1] === lf) { 7 | x = x.slice(0, x.length - 1); 8 | } 9 | 10 | if (x[x.length - 1] === cr) { 11 | x = x.slice(0, x.length - 1); 12 | } 13 | 14 | return x; 15 | }; 16 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/partition.js: -------------------------------------------------------------------------------- 1 | define(['./_group'], function (_group) { 2 | 3 | // Split a collection into two arrays: one whose elements all pass the given 4 | // truth test, and one whose elements all do not pass the truth test. 5 | var partition = _group(function(result, value, pass) { 6 | result[pass ? 0 : 1].push(value); 7 | }, true); 8 | 9 | return partition; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/wrap.js: -------------------------------------------------------------------------------- 1 | define(['./partial'], function (partial) { 2 | 3 | // Returns the first function passed as an argument to the second, 4 | // allowing you to adjust arguments, run code before and after, and 5 | // conditionally execute the original function. 6 | function wrap(func, wrapper) { 7 | return partial(wrapper, func); 8 | } 9 | 10 | return wrap; 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/extendOwn.js: -------------------------------------------------------------------------------- 1 | var _createAssigner = require('./_createAssigner.js'); 2 | var keys = require('./keys.js'); 3 | 4 | // Assigns a given object with all the own properties in the passed-in 5 | // object(s). 6 | // (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) 7 | var extendOwn = _createAssigner(keys); 8 | 9 | module.exports = extendOwn; 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/invert.js: -------------------------------------------------------------------------------- 1 | var keys = require('./keys.js'); 2 | 3 | // Invert the keys and values of an object. The values must be serializable. 4 | function invert(obj) { 5 | var result = {}; 6 | var _keys = keys(obj); 7 | for (var i = 0, length = _keys.length; i < length; i++) { 8 | result[obj[_keys[i]]] = _keys[i]; 9 | } 10 | return result; 11 | } 12 | 13 | module.exports = invert; 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/countBy.js: -------------------------------------------------------------------------------- 1 | import group from './_group.js'; 2 | import has from './_has.js'; 3 | 4 | // Counts instances of an object that group by a certain criterion. Pass 5 | // either a string attribute to count by, or a function that returns the 6 | // criterion. 7 | export default group(function(result, value, key) { 8 | if (has(result, key)) result[key]++; else result[key] = 1; 9 | }); 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/endpoint/node_modules/isobject/index.cjs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /*! 4 | * isobject 5 | * 6 | * Copyright (c) 2014-2017, Jon Schlinkert. 7 | * Released under the MIT License. 8 | */ 9 | 10 | function isObject(val) { 11 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 12 | } 13 | 14 | module.exports = isObject; 15 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/request/node_modules/isobject/index.cjs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /*! 4 | * isobject 5 | * 6 | * Copyright (c) 2014-2017, Jon Schlinkert. 7 | * Released under the MIT License. 8 | */ 9 | 10 | function isObject(val) { 11 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 12 | } 13 | 14 | module.exports = isObject; 15 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/endpoint/node_modules/isobject/index.cjs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /*! 4 | * isobject 5 | * 6 | * Copyright (c) 2014-2017, Jon Schlinkert. 7 | * Released under the MIT License. 8 | */ 9 | 10 | function isObject(val) { 11 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 12 | } 13 | 14 | module.exports = isObject; 15 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/request/node_modules/isobject/index.cjs.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /*! 4 | * isobject 5 | * 6 | * Copyright (c) 2014-2017, Jon Schlinkert. 7 | * Released under the MIT License. 8 | */ 9 | 10 | function isObject(val) { 11 | return val != null && typeof val === 'object' && Array.isArray(val) === false; 12 | } 13 | 14 | module.exports = isObject; 15 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/has-last-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasLastPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasLastPage (link) { 7 | deprecate(`octokit.hasLastPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).last 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/has-next-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasNextPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasNextPage (link) { 7 | deprecate(`octokit.hasNextPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).next 9 | } 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/matcher.js: -------------------------------------------------------------------------------- 1 | var extendOwn = require('./extendOwn.js'); 2 | var isMatch = require('./isMatch.js'); 3 | 4 | // Returns a predicate for checking whether an object has a given set of 5 | // `key:value` pairs. 6 | function matcher(attrs) { 7 | attrs = extendOwn({}, attrs); 8 | return function(obj) { 9 | return isMatch(obj, attrs); 10 | }; 11 | } 12 | 13 | module.exports = matcher; 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/initial.js: -------------------------------------------------------------------------------- 1 | import { slice } from './_setup.js'; 2 | 3 | // Returns everything but the last entry of the array. Especially useful on 4 | // the arguments object. Passing **n** will return all the values in 5 | // the array, excluding the last N. 6 | export default function initial(array, n, guard) { 7 | return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n))); 8 | } 9 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- 1 | Package: testpackage 2 | Title: A Simple Test Description File to Test Packages 3 | Version: 1.0.0 4 | Authors@R: 5 | c(person(given = "Jim", 6 | family = "Hester", 7 | role = c("aut", "cre"), 8 | email = "james.hester@rstudio.com")) 9 | Description: This is a simple package used to test the workflow files. 10 | Imports: xml2, curl 11 | Suggests: covr 12 | License: GPL (>= 2) 13 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/has-last-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasLastPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasLastPage (link) { 7 | deprecate(`octokit.hasLastPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).last 9 | } 10 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/has-next-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasNextPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasNextPage (link) { 7 | deprecate(`octokit.hasNextPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).next 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/has-first-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasFirstPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasFirstPage (link) { 7 | deprecate(`octokit.hasFirstPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).first 9 | } 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/@actions/core/lib/utils.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":";AAAA,mCAAmC;AACnC,uDAAuD;;AAEvD;;;GAGG;AACH,SAAgB,cAAc,CAAC,KAAU;IACvC,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,EAAE;QACzC,OAAO,EAAE,CAAA;KACV;SAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,YAAY,MAAM,EAAE;QAC/D,OAAO,KAAe,CAAA;KACvB;IACD,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAA;AAC9B,CAAC;AAPD,wCAOC"} -------------------------------------------------------------------------------- /setup-r/node_modules/typed-rest-client/opensource/Node-SMB/README.md: -------------------------------------------------------------------------------- 1 | ### Reference: 2 | The modules (common.js, ntlm.js and smbhash.js) were copied from a file of the same name at https://github.com/Node-SMB/ntlm. 3 | 4 | The modules has been used for the purpose of encoding and decoding the headers used during NTLM HTTP Authentication and as of this writing, it is a part of the typed-rest-client module produced by Microsoft. 5 | 6 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/matcher.js: -------------------------------------------------------------------------------- 1 | define(['./extendOwn', './isMatch'], function (extendOwn, isMatch) { 2 | 3 | // Returns a predicate for checking whether an object has a given set of 4 | // `key:value` pairs. 5 | function matcher(attrs) { 6 | attrs = extendOwn({}, attrs); 7 | return function(obj) { 8 | return isMatch(obj, attrs); 9 | }; 10 | } 11 | 12 | return matcher; 13 | 14 | }); 15 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/tap.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Invokes `interceptor` with the `obj` and then returns `obj`. 4 | // The primary purpose of this method is to "tap into" a method chain, in 5 | // order to perform operations on intermediate results within the chain. 6 | function tap(obj, interceptor) { 7 | interceptor(obj); 8 | return obj; 9 | } 10 | 11 | return tap; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/has-first-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasFirstPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasFirstPage (link) { 7 | deprecate(`octokit.hasFirstPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).first 9 | } 10 | -------------------------------------------------------------------------------- /setup-pandoc/node_modules/@actions/core/lib/utils.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":";AAAA,mCAAmC;AACnC,uDAAuD;;AAEvD;;;GAGG;AACH,SAAgB,cAAc,CAAC,KAAU;IACvC,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,EAAE;QACzC,OAAO,EAAE,CAAA;KACV;SAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,YAAY,MAAM,EAAE;QAC/D,OAAO,KAAe,CAAA;KACvB;IACD,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAA;AAC9B,CAAC;AAPD,wCAOC"} -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/_deepGet.js: -------------------------------------------------------------------------------- 1 | define(function () { 2 | 3 | // Internal function to obtain a nested property in `obj` along `path`. 4 | function deepGet(obj, path) { 5 | var length = path.length; 6 | for (var i = 0; i < length; i++) { 7 | if (obj == null) return void 0; 8 | obj = obj[path[i]]; 9 | } 10 | return length ? obj : void 0; 11 | } 12 | 13 | return deepGet; 14 | 15 | }); 16 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/delay.js: -------------------------------------------------------------------------------- 1 | define(['./restArguments'], function (restArguments) { 2 | 3 | // Delays a function for the given number of milliseconds, and then calls 4 | // it with the arguments supplied. 5 | var delay = restArguments(function(func, wait, args) { 6 | return setTimeout(function() { 7 | return func.apply(null, args); 8 | }, wait); 9 | }); 10 | 11 | return delay; 12 | 13 | }); 14 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/rest.js: -------------------------------------------------------------------------------- 1 | define(['./_setup'], function (_setup) { 2 | 3 | // Returns everything but the first entry of the `array`. Especially useful on 4 | // the `arguments` object. Passing an **n** will return the rest N values in the 5 | // `array`. 6 | function rest(array, n, guard) { 7 | return _setup.slice.call(array, n == null || guard ? 1 : n); 8 | } 9 | 10 | return rest; 11 | 12 | }); 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/union.js: -------------------------------------------------------------------------------- 1 | var restArguments = require('./restArguments.js'); 2 | var uniq = require('./uniq.js'); 3 | var _flatten = require('./_flatten.js'); 4 | 5 | // Produce an array that contains the union: each distinct element from all of 6 | // the passed-in arrays. 7 | var union = restArguments(function(arrays) { 8 | return uniq(_flatten(arrays, true, true)); 9 | }); 10 | 11 | module.exports = union; 12 | -------------------------------------------------------------------------------- /setup-tinytex/node_modules/@actions/core/lib/utils.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"utils.js","sourceRoot":"","sources":["../src/utils.ts"],"names":[],"mappings":";AAAA,mCAAmC;AACnC,uDAAuD;;AAEvD;;;GAGG;AACH,SAAgB,cAAc,CAAC,KAAU;IACvC,IAAI,KAAK,KAAK,IAAI,IAAI,KAAK,KAAK,SAAS,EAAE;QACzC,OAAO,EAAE,CAAA;KACV;SAAM,IAAI,OAAO,KAAK,KAAK,QAAQ,IAAI,KAAK,YAAY,MAAM,EAAE;QAC/D,OAAO,KAAe,CAAA;KACvB;IACD,OAAO,IAAI,CAAC,SAAS,CAAC,KAAK,CAAC,CAAA;AAC9B,CAAC;AAPD,wCAOC"} -------------------------------------------------------------------------------- /pr-fetch/node_modules/before-after-hook/lib/remove.js: -------------------------------------------------------------------------------- 1 | module.exports = removeHook 2 | 3 | function removeHook (state, name, method) { 4 | if (!state.registry[name]) { 5 | return 6 | } 7 | 8 | var index = state.registry[name] 9 | .map(function (registered) { return registered.orig }) 10 | .indexOf(method) 11 | 12 | if (index === -1) { 13 | return 14 | } 15 | 16 | state.registry[name].splice(index, 1) 17 | } 18 | -------------------------------------------------------------------------------- /pr-push/node_modules/before-after-hook/lib/remove.js: -------------------------------------------------------------------------------- 1 | module.exports = removeHook 2 | 3 | function removeHook (state, name, method) { 4 | if (!state.registry[name]) { 5 | return 6 | } 7 | 8 | var index = state.registry[name] 9 | .map(function (registered) { return registered.orig }) 10 | .indexOf(method) 11 | 12 | if (index === -1) { 13 | return 14 | } 15 | 16 | state.registry[name].splice(index, 1) 17 | } 18 | -------------------------------------------------------------------------------- /pr-push/node_modules/deprecation/dist-web/index.js: -------------------------------------------------------------------------------- 1 | class Deprecation extends Error { 2 | constructor(message) { 3 | super(message); // Maintains proper stack trace (only available on V8) 4 | 5 | /* istanbul ignore next */ 6 | 7 | if (Error.captureStackTrace) { 8 | Error.captureStackTrace(this, this.constructor); 9 | } 10 | 11 | this.name = 'Deprecation'; 12 | } 13 | 14 | } 15 | 16 | export { Deprecation }; 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/values.js: -------------------------------------------------------------------------------- 1 | define(['./keys'], function (keys) { 2 | 3 | // Retrieve the values of an object's properties. 4 | function values(obj) { 5 | var _keys = keys(obj); 6 | var length = _keys.length; 7 | var values = Array(length); 8 | for (var i = 0; i < length; i++) { 9 | values[i] = obj[_keys[i]]; 10 | } 11 | return values; 12 | } 13 | 14 | return values; 15 | 16 | }); 17 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/@octokit/graphql/lib/with-defaults.js: -------------------------------------------------------------------------------- 1 | module.exports = withDefaults 2 | 3 | const graphql = require('./graphql') 4 | 5 | function withDefaults (request, newDefaults) { 6 | const newRequest = request.defaults(newDefaults) 7 | const newApi = function (query, options) { 8 | return graphql(newRequest, query, options) 9 | } 10 | 11 | newApi.defaults = withDefaults.bind(null, newRequest) 12 | return newApi 13 | } 14 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/deprecation/dist-web/index.js: -------------------------------------------------------------------------------- 1 | class Deprecation extends Error { 2 | constructor(message) { 3 | super(message); // Maintains proper stack trace (only available on V8) 4 | 5 | /* istanbul ignore next */ 6 | 7 | if (Error.captureStackTrace) { 8 | Error.captureStackTrace(this, this.constructor); 9 | } 10 | 11 | this.name = 'Deprecation'; 12 | } 13 | 14 | } 15 | 16 | export { Deprecation }; 17 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/octokit-pagination-methods/lib/has-previous-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasPreviousPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasPreviousPage (link) { 7 | deprecate(`octokit.hasPreviousPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).prev 9 | } 10 | -------------------------------------------------------------------------------- /pr-push/node_modules/@octokit/graphql/lib/with-defaults.js: -------------------------------------------------------------------------------- 1 | module.exports = withDefaults 2 | 3 | const graphql = require('./graphql') 4 | 5 | function withDefaults (request, newDefaults) { 6 | const newRequest = request.defaults(newDefaults) 7 | const newApi = function (query, options) { 8 | return graphql(newRequest, query, options) 9 | } 10 | 11 | newApi.defaults = withDefaults.bind(null, newRequest) 12 | return newApi 13 | } 14 | -------------------------------------------------------------------------------- /pr-push/node_modules/octokit-pagination-methods/lib/has-previous-page.js: -------------------------------------------------------------------------------- 1 | module.exports = hasPreviousPage 2 | 3 | const deprecate = require('./deprecate') 4 | const getPageLinks = require('./get-page-links') 5 | 6 | function hasPreviousPage (link) { 7 | deprecate(`octokit.hasPreviousPage() – You can use octokit.paginate or async iterators instead: https://github.com/octokit/rest.js#pagination.`) 8 | return getPageLinks(link).prev 9 | } 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/groupBy.js: -------------------------------------------------------------------------------- 1 | define(['./_group', './_has'], function (_group, _has) { 2 | 3 | // Groups the object's values by a criterion. Pass either a string attribute 4 | // to group by, or a function that returns the criterion. 5 | var groupBy = _group(function(result, value, key) { 6 | if (_has(result, key)) result[key].push(value); else result[key] = [value]; 7 | }); 8 | 9 | return groupBy; 10 | 11 | }); 12 | -------------------------------------------------------------------------------- /pr-fetch/node_modules/universal-user-agent/index.js: -------------------------------------------------------------------------------- 1 | module.exports = getUserAgentNode 2 | 3 | const osName = require('os-name') 4 | 5 | function getUserAgentNode () { 6 | try { 7 | return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})` 8 | } catch (error) { 9 | if (/wmic os get Caption/.test(error.message)) { 10 | return 'Windows ' 11 | } 12 | 13 | throw error 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /pr-push/node_modules/universal-user-agent/index.js: -------------------------------------------------------------------------------- 1 | module.exports = getUserAgentNode 2 | 3 | const osName = require('os-name') 4 | 5 | function getUserAgentNode () { 6 | try { 7 | return `Node.js/${process.version.substr(1)} (${osName()}; ${process.arch})` 8 | } catch (error) { 9 | if (/wmic os get Caption/.test(error.message)) { 10 | return 'Windows ' 11 | } 12 | 13 | throw error 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /setup-r/.github/testthat.json: -------------------------------------------------------------------------------- 1 | { 2 | "problemMatcher": [ 3 | { 4 | "owner": "testthat", 5 | "pattern": [ 6 | { 7 | "regexp": "^(.*):(\\d+): (\\w+): (\\w+)$", 8 | "file": 1, 9 | "line": 2, 10 | "severity": 3, 11 | "message": 4 12 | } 13 | ] 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/amd/invert.js: -------------------------------------------------------------------------------- 1 | define(['./keys'], function (keys) { 2 | 3 | // Invert the keys and values of an object. The values must be serializable. 4 | function invert(obj) { 5 | var result = {}; 6 | var _keys = keys(obj); 7 | for (var i = 0, length = _keys.length; i < length; i++) { 8 | result[obj[_keys[i]]] = _keys[i]; 9 | } 10 | return result; 11 | } 12 | 13 | return invert; 14 | 15 | }); 16 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/groupBy.js: -------------------------------------------------------------------------------- 1 | var _group = require('./_group.js'); 2 | var _has = require('./_has.js'); 3 | 4 | // Groups the object's values by a criterion. Pass either a string attribute 5 | // to group by, or a function that returns the criterion. 6 | var groupBy = _group(function(result, value, key) { 7 | if (_has(result, key)) result[key].push(value); else result[key] = [value]; 8 | }); 9 | 10 | module.exports = groupBy; 11 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/filter.js: -------------------------------------------------------------------------------- 1 | import cb from './_cb.js'; 2 | import each from './each.js'; 3 | 4 | // Return all the elements that pass a truth test. 5 | export default function filter(obj, predicate, context) { 6 | var results = []; 7 | predicate = cb(predicate, context); 8 | each(obj, function(value, index, list) { 9 | if (predicate(value, index, list)) results.push(value); 10 | }); 11 | return results; 12 | } 13 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/last.js: -------------------------------------------------------------------------------- 1 | import rest from './rest.js'; 2 | 3 | // Get the last element of an array. Passing **n** will return the last N 4 | // values in the array. 5 | export default function last(array, n, guard) { 6 | if (array == null || array.length < 1) return n == null || guard ? void 0 : []; 7 | if (n == null || guard) return array[array.length - 1]; 8 | return rest(array, Math.max(0, array.length - n)); 9 | } 10 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/property.js: -------------------------------------------------------------------------------- 1 | import deepGet from './_deepGet.js'; 2 | import toPath from './_toPath.js'; 3 | 4 | // Creates a function that, when passed an object, will traverse that object’s 5 | // properties down the given `path`, specified as an array of keys or indices. 6 | export default function property(path) { 7 | path = toPath(path); 8 | return function(obj) { 9 | return deepGet(obj, path); 10 | }; 11 | } 12 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/modules/pairs.js: -------------------------------------------------------------------------------- 1 | import keys from './keys.js'; 2 | 3 | // Convert an object into a list of `[key, value]` pairs. 4 | // The opposite of `_.object` with one argument. 5 | export default function pairs(obj) { 6 | var _keys = keys(obj); 7 | var length = _keys.length; 8 | var pairs = Array(length); 9 | for (var i = 0; i < length; i++) { 10 | pairs[i] = [_keys[i], obj[_keys[i]]]; 11 | } 12 | return pairs; 13 | } 14 | -------------------------------------------------------------------------------- /pr-push/node_modules/@actions/github/lib/github.d.ts: -------------------------------------------------------------------------------- 1 | import { GraphQlQueryResponse, Variables } from '@octokit/graphql'; 2 | import Octokit from '@octokit/rest'; 3 | import * as Context from './context'; 4 | export declare const context: Context.Context; 5 | export declare class GitHub extends Octokit { 6 | graphql: (query: string, variables?: Variables) => Promise; 7 | constructor(token: string, opts?: Omit); 8 | } 9 | -------------------------------------------------------------------------------- /setup-r/node_modules/underscore/cjs/countBy.js: -------------------------------------------------------------------------------- 1 | var _group = require('./_group.js'); 2 | var _has = require('./_has.js'); 3 | 4 | // Counts instances of an object that group by a certain criterion. Pass 5 | // either a string attribute to count by, or a function that returns the 6 | // criterion. 7 | var countBy = _group(function(result, value, key) { 8 | if (_has(result, key)) result[key]++; else result[key] = 1; 9 | }); 10 | 11 | module.exports = countBy; 12 | --------------------------------------------------------------------------------