Sha256: b4286d1de9222d6d9d3cfbf9c5515548ca22c977dcd74400f434e938e7fc8379
Contents?: true
Size: 799 Bytes
Versions: 466
Compression:
Stored size: 799 Bytes
Contents
import { filter } from 'lodash' const isEmpty = (value: string | unknown): boolean => !value || value == '' const titleizedWord = (word: string): string => ( word.charAt(0).toUpperCase() + word.slice(1).toLowerCase() ) export const titleize = (sentence: string): string => ( isEmpty(sentence) ? sentence : sentence.split(' ').map(titleizedWord).join(' ') ) const notEmpty = (value: string | Record<string, unknown>): boolean => !isEmpty(value) export const joinPresent = (array: string[], separator: string): string => ( filter(array, notEmpty).join(separator) ) export const camelToSnakeCase = (word: string): string => { return word.split(/([A-Z])/g).map((w, i) => { const prefix = i > 0 ? '_' : '' return w === w.toLowerCase() ? w : prefix + w.toLowerCase() }).join("") }
Version data entries
466 entries across 466 versions & 1 rubygems