|
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";
|
|---|
| 2 | Object.defineProperty(exports, "__esModule", { value: true });
|
|---|
| 3 | exports.dotCase = void 0;
|
|---|
| 4 | var tslib_1 = require("tslib");
|
|---|
| 5 | var no_case_1 = require("no-case");
|
|---|
| 6 | function dotCase(input, options) {
|
|---|
| 7 | if (options === void 0) { options = {}; }
|
|---|
| 8 | return no_case_1.noCase(input, tslib_1.__assign({ delimiter: "." }, options));
|
|---|
| 9 | }
|
|---|
| 10 | exports.dotCase = dotCase;
|
|---|
| 11 | //# sourceMappingURL=index.js.map |
|---|
Note:
See
TracBrowser
for help on using the repository browser.