index.js 371 B

12345678910
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var tslib_1 = require("tslib");
  4. var no_case_1 = require("no-case");
  5. function dotCase(input, options) {
  6. if (options === void 0) { options = {}; }
  7. return no_case_1.noCase(input, tslib_1.__assign({ delimiter: "." }, options));
  8. }
  9. exports.dotCase = dotCase;
  10. //# sourceMappingURL=index.js.map