Hacker News new | ask | show | jobs
by simplicitea 2035 days ago
Template literals... helllsss yesss, been waiting a long time for those suckers.
1 comments

readability? who needs it when i can now say `this, but camel case and no nulls`

  export type Camel<T> = { [K in keyof T as K extends string ? `${Uncapitalize<string & K>}` : K]: T[K] extends Record<any, any> ? Camel<Exclude<T[K], null>> : Exclude<T[K], null> }