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/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;

23
node_modules/camel-case/dist/index.js generated vendored Normal file
View File

@@ -0,0 +1,23 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.camelCase = exports.camelCaseTransformMerge = exports.camelCaseTransform = void 0;
var tslib_1 = require("tslib");
var pascal_case_1 = require("pascal-case");
function camelCaseTransform(input, index) {
if (index === 0)
return input.toLowerCase();
return pascal_case_1.pascalCaseTransform(input, index);
}
exports.camelCaseTransform = camelCaseTransform;
function camelCaseTransformMerge(input, index) {
if (index === 0)
return input.toLowerCase();
return pascal_case_1.pascalCaseTransformMerge(input);
}
exports.camelCaseTransformMerge = camelCaseTransformMerge;
function camelCase(input, options) {
if (options === void 0) { options = {}; }
return pascal_case_1.pascalCase(input, tslib_1.__assign({ transform: camelCaseTransform }, options));
}
exports.camelCase = camelCase;
//# sourceMappingURL=index.js.map

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

File diff suppressed because one or more lines are too long

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

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

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

@@ -0,0 +1,26 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var _1 = require(".");
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: _1.camelCaseTransformMerge }],
];
describe("camel case", function () {
var _loop_1 = function (input, result, options) {
it(input + " -> " + result, function () {
expect(_1.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

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

File diff suppressed because one or more lines are too long