UNPKG

ember-ghost

Version:

Fully-functional, SEO friendly static site implementation of a blog system built on Ember.

15 lines (11 loc) 252 B
/* eslint-env node */ const Case = require('case'); module.exports = { description: 'Generates a new author', locals(options) { return { name: Case.capital(options.entity.name), id: Case.kebab(options.entity.name), }; } };