Skip to content

Commit

Permalink
style: pass lint
Browse files Browse the repository at this point in the history
  • Loading branch information
k1r0s committed Dec 13, 2017
1 parent 074a022 commit fd38797
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/apply-aspect.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export function applyAspect(advicePool: any) {
return function(target) {
export function applyAspect (advicePool: any) {
return function (target) {
for (let key in advicePool) {
if(key === "constructor") {
if (key === "constructor") {
advicePool[key].forEach(advice => target = advice(target))
} else {
advicePool[key].forEach(advice => {
Expand Down

0 comments on commit fd38797

Please sign in to comment.