This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(i=1;i<101;i++) | |
o =i%3?'':'Fizz', | |
o+=i%5?'':'Buzz', | |
console.log(o||i) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Zero pad the gutter numbers in Atom for a cleaner look. */ | |
// loop through 1 - 9 | |
@iterations: 8; | |
.double-zero-pad (@i) when (@i >= 0) { | |
.line-number[data-buffer-row="@{i}"]::before, | |
.git-line-removed[data-buffer-row="@{i}"]::before { content: '00' !important } | |
.double-zero-pad(@i - 1); | |
} .double-zero-pad (@iterations); |