Last active
January 14, 2020 17:04
-
-
Save tiptopcoder/d41b2d287647d1e9686cd28b744df4fb to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { formatName } from "~/utils/helpers/format-name"; | |
export class User { | |
get fullName() { | |
return formatName("John", "Doe"); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment