Skip to content

Instantly share code, notes, and snippets.

@nicolasdao
Created August 7, 2017 12:31
Show Gist options
  • Save nicolasdao/c4598b2c56b4fca7841c53337f93088d to your computer and use it in GitHub Desktop.
Save nicolasdao/c4598b2c56b4fca7841c53337f93088d to your computer and use it in GitHub Desktop.
const schema = `
...
@alias(T => T.match(/s$/) ? T+'es' : T.match(/y$/) ? T.replace(/y$/, 'ies') : T+'s')
type Paged<T> {
data: [T]
page: Page
}`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment