web 3d图形渲染器
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.

22 lines
936 B

  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.camelCase = exports.camelCaseTransformMerge = exports.camelCaseTransform = void 0;
  4. var tslib_1 = require("tslib");
  5. var pascal_case_1 = require("pascal-case");
  6. function camelCaseTransform(input, index) {
  7. if (index === 0)
  8. return input.toLowerCase();
  9. return pascal_case_1.pascalCaseTransform(input, index);
  10. }
  11. exports.camelCaseTransform = camelCaseTransform;
  12. function camelCaseTransformMerge(input, index) {
  13. if (index === 0)
  14. return input.toLowerCase();
  15. return pascal_case_1.pascalCaseTransformMerge(input);
  16. }
  17. exports.camelCaseTransformMerge = camelCaseTransformMerge;
  18. function camelCase(input, options) {
  19. if (options === void 0) { options = {}; }
  20. return pascal_case_1.pascalCase(input, tslib_1.__assign({ transform: camelCaseTransform }, options));
  21. }
  22. exports.camelCase = camelCase;
  23. //# sourceMappingURL=index.js.map