keys-converter
Version:
This package provide a util function to convert snake case object keys to camel case
13 lines • 576 B
JavaScript
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.isFirstCharUnderscore = void 0;
const is_char_underscore_1 = __importDefault(require("./is_char_underscore"));
const isFirstCharUnderscore = (str) => {
return is_char_underscore_1.default(str[0]);
};
exports.isFirstCharUnderscore = isFirstCharUnderscore;
exports.default = isFirstCharUnderscore;
//# sourceMappingURL=is_first_char_underscore.js.map
;