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

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

@@ -0,0 +1,3 @@
import { Options } from "no-case";
export { Options };
export declare function dotCase(input: string, options?: Options): string;

7
node_modules/dot-case/dist.es2015/index.js generated vendored Normal file
View File

@@ -0,0 +1,7 @@
import { __assign } from "tslib";
import { noCase } from "no-case";
export function dotCase(input, options) {
if (options === void 0) { options = {}; }
return noCase(input, __assign({ delimiter: "." }, options));
}
//# sourceMappingURL=index.js.map

1
node_modules/dot-case/dist.es2015/index.js.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAW,MAAM,SAAS,CAAC;AAI1C,MAAM,UAAU,OAAO,CAAC,KAAa,EAAE,OAAqB;IAArB,wBAAA,EAAA,YAAqB;IAC1D,OAAO,MAAM,CAAC,KAAK,aACjB,SAAS,EAAE,GAAG,IACX,OAAO,EACV,CAAC;AACL,CAAC","sourcesContent":["import { noCase, Options } from \"no-case\";\n\nexport { Options };\n\nexport function dotCase(input: string, options: Options = {}) {\n return noCase(input, {\n delimiter: \".\",\n ...options,\n });\n}\n"]}

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

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

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

@@ -0,0 +1,24 @@
import { dotCase } from ".";
var TEST_CASES = [
["", ""],
["test", "test"],
["test string", "test.string"],
["Test String", "test.string"],
["dot.case", "dot.case"],
["path/case", "path.case"],
["TestV2", "test.v2"],
["version 1.2.10", "version.1.2.10"],
["version 1.21.0", "version.1.21.0"],
];
describe("dot case", function () {
var _loop_1 = function (input, result) {
it(input + " -> " + result, function () {
expect(dotCase(input)).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];
_loop_1(input, result);
}
});
//# sourceMappingURL=index.spec.js.map

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

File diff suppressed because one or more lines are too long