Sha256: d4978c3f743921aefd2609c001cf4a6baf74dd5e67337b5088bb29cb6d832ebb
Contents?: true
Size: 672 Bytes
Versions: 61
Compression:
Stored size: 672 Bytes
Contents
import {DelimiterCase} from './delimiter-case'; /** Convert a string literal to snake-case. This can be useful when, for example, converting a camel-cased object property to a snake-cased SQL column name. @example ``` import {SnakeCase} from 'type-fest'; // Simple const someVariable: SnakeCase<'fooBar'> = 'foo_bar'; // Advanced type SnakeCasedProps<T> = { [K in keyof T as SnakeCase<K>]: T[K] }; interface ModelProps { isHappy: boolean; fullFamilyName: string; foo: number; } const dbResult: SnakeCasedProps<ModelProps> = { 'is_happy': true, 'full_family_name': 'Carla Smith', foo: 123 }; ``` */ export type SnakeCase<Value> = DelimiterCase<Value, '_'>;
Version data entries
61 entries across 61 versions & 4 rubygems