UNPKG

react-garden

Version:

React + TypeScript + ThreeJS app using Material UI on NextJS, Apollo Client, GraphQL + WordPress REST APIs, for ThreeD web development.. a part of the threed.ai code family.

3 lines (2 loc) 154 B
// ** Returns initials from string export const getInitials = string => string.split(/\s/).reduce((response, word) => (response += word.slice(0, 1)), '')