Skip to content

Instantly share code, notes, and snippets.

@takahiro-saeki
Created September 18, 2016 23:05
Show Gist options
  • Save takahiro-saeki/253c41b7587e5f1eea3217aa367d2384 to your computer and use it in GitHub Desktop.
Save takahiro-saeki/253c41b7587e5f1eea3217aa367d2384 to your computer and use it in GitHub Desktop.
The code to be used in the medium
class Test {
constructor(options) {
this.options = Object.assign({
elem: '#app',
time: 1000,
animate: 'normal'
}, options)
...
}
...
}
new Test({time: 3000, animate: 'animate'});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment