UNPKG

swap-project-example

Version:

An example repository to illustrate to result of generating a project with generate-swap-project (https://github.com/rbecheras/generate-swap-project)

19 lines (13 loc) 265 B
import debug from 'debug' const d = debug('swap-project-example') d('starting app') export default class DemoClass { constructor () { this.propA = 'A' this.propB = 'B' } concatenate () { return this.propA + this.propB } } d('finished app')