UNPKG

es6-starter-kit

Version:

A pre-configured starter kit bundle to speed-up your development with ES6

10 lines (7 loc) 164 B
import add from './add'; const obj = { a: 1, b: 2, }; console.log('Using the spread operator', { ...obj }); console.log('The result is', add(add(2, 3), 10));