UNPKG

keys-converter

Version:

This package provide a util function to convert snake case object keys to camel case

13 lines 583 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); exports.isLastCharUnderscore = void 0; const is_char_underscore_1 = __importDefault(require("./is_char_underscore")); const isLastCharUnderscore = (str) => { return is_char_underscore_1.default(str[str.length - 1]); }; exports.isLastCharUnderscore = isLastCharUnderscore; exports.default = isLastCharUnderscore; //# sourceMappingURL=is_last_char_underscore.js.map