UNPKG

keys-converter

Version:

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

12 lines 381 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getAsciiCodeForChar = void 0; const getAsciiCodeForChar = (char) => { if (typeof char === 'string') { return char.charCodeAt(0); } return 0; }; exports.getAsciiCodeForChar = getAsciiCodeForChar; exports.default = getAsciiCodeForChar; //# sourceMappingURL=get_ascii_code.js.map