This commit is contained in:
lalBi94
2023-03-05 13:23:23 +01:00
commit 7bc56c09b5
14034 changed files with 1834369 additions and 0 deletions

5
node_modules/camel-case/dist.es2015/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
import { Options } from "pascal-case";
export { Options };
export declare function camelCaseTransform(input: string, index: number): string;
export declare function camelCaseTransformMerge(input: string, index: number): string;
export declare function camelCase(input: string, options?: Options): string;

17
node_modules/camel-case/dist.es2015/index.js generated vendored Normal file
View 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

1
node_modules/camel-case/dist.es2015/index.js.map generated vendored Normal file

File diff suppressed because one or more lines are too long

1
node_modules/camel-case/dist.es2015/index.spec.d.ts generated vendored Normal file
View File

@@ -0,0 +1 @@
export {};

24
node_modules/camel-case/dist.es2015/index.spec.js generated vendored Normal file
View File

@@ -0,0 +1,24 @@
import { camelCase, camelCaseTransformMerge } from ".";
var TEST_CASES = [
["", ""],
["test", "test"],
["test string", "testString"],
["Test String", "testString"],
["TestV2", "testV2"],
["_foo_bar_", "fooBar"],
["version 1.2.10", "version_1_2_10"],
["version 1.21.0", "version_1_21_0"],
["version 1.2.10", "version1210", { transform: camelCaseTransformMerge }],
];
describe("camel case", function () {
var _loop_1 = function (input, result, options) {
it(input + " -> " + result, function () {
expect(camelCase(input, options)).toEqual(result);
});
};
for (var _i = 0, TEST_CASES_1 = TEST_CASES; _i < TEST_CASES_1.length; _i++) {
var _a = TEST_CASES_1[_i], input = _a[0], result = _a[1], options = _a[2];
_loop_1(input, result, options);
}
});
//# sourceMappingURL=index.spec.js.map

File diff suppressed because one or more lines are too long