source: frontend/node_modules/dot-case/dist/index.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 397 bytes
Line 
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.dotCase = void 0;
4var tslib_1 = require("tslib");
5var no_case_1 = require("no-case");
6function dotCase(input, options) {
7 if (options === void 0) { options = {}; }
8 return no_case_1.noCase(input, tslib_1.__assign({ delimiter: "." }, options));
9}
10exports.dotCase = dotCase;
11//# sourceMappingURL=index.js.map
Note: See TracBrowser for help on using the repository browser.