UNPKG

dynamoose

Version:

Dynamoose is a modeling tool for Amazon's DynamoDB (inspired by Mongoose)

5 lines (4 loc) 224 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); // This function will capitalize the first letter of the string and return it exports.default = (str) => `${str[0].toUpperCase()}${str.slice(1)}`;