Skip to content

Instantly share code, notes, and snippets.

@738

738/block3.js Secret

Created July 18, 2018 05:40
Show Gist options
  • Save 738/3e566c913c82af9a89ff3c12bfd5f11c to your computer and use it in GitHub Desktop.
Save 738/3e566c913c82af9a89ff3c12bfd5f11c to your computer and use it in GitHub Desktop.
// 밑의 4개 함수는 CRUD 관련 함수입니다.
save(address, name) {
// ...
}
get() {
// ...
}
edit(address, newName) {
// ...
}
delete(address) {
// ...
}
// 즐겨찾기 설정하면 클라이언트에서 제일 위에 노출됩니다.
addOrRemoveFavorite(address) {
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment