您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 

11 行
397 B

  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