Bump artifact dependencies if CODEQL_ACTION_ARTIFACT_V2_UPGRADE enabled (#2482)
Co-authored-by: Andrew Eisenberg <aeisenberg@github.com> Co-authored-by: Henry Mercer <henrymercer@github.com>
This commit is contained in:
parent
cf5b0a9041
commit
a196a714b8
5388 changed files with 2176737 additions and 71701 deletions
17
node_modules/camel-case/dist.es2015/index.js
generated
vendored
Normal file
17
node_modules/camel-case/dist.es2015/index.js
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { __assign } from "tslib";
|
||||
import { pascalCase, pascalCaseTransform, pascalCaseTransformMerge, } from "pascal-case";
|
||||
export function camelCaseTransform(input, index) {
|
||||
if (index === 0)
|
||||
return input.toLowerCase();
|
||||
return pascalCaseTransform(input, index);
|
||||
}
|
||||
export function camelCaseTransformMerge(input, index) {
|
||||
if (index === 0)
|
||||
return input.toLowerCase();
|
||||
return pascalCaseTransformMerge(input);
|
||||
}
|
||||
export function camelCase(input, options) {
|
||||
if (options === void 0) { options = {}; }
|
||||
return pascalCase(input, __assign({ transform: camelCaseTransform }, options));
|
||||
}
|
||||
//# sourceMappingURL=index.js.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue