版博士V2.0程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
405 B

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