1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | 3x 3x 3x 2x | /*! * Main.js (https://github.com/nathanchapman/babel-starter-kit) * * Copyright (c) 2016 Nathan Chapman. * Licensed under the MIT license. */ class Main { constructor() { this.woo = 'Wooo!'; this.someOtherMethod = val => val; } someMethod() { return this.woo; } } export default Main; |