Skip to content

Instantly share code, notes, and snippets.

View anti-pode's full-sized avatar
🎯
Focusing

Timofey Solomennikov anti-pode

🎯
Focusing
View GitHub Profile
@anti-pode
anti-pode / gist:cde2ba6d56f9c8b703f1036f904f3dab
Created August 13, 2019 05:50 — forked from realmyst/gist:1262561
Склонение числительных в javascript
function declOfNum(number, titles) {
cases = [2, 0, 1, 1, 1, 2];
return titles[ (number%100>4 && number%100<20)? 2 : cases[(number%10<5)?number%10:5] ];
}
use:
declOfNum(count, ['найдена', 'найдено', 'найдены']);
@anti-pode
anti-pode / button.sass
Created February 19, 2019 12:32 — forked from agragregra/button.sass
Button Sass Styles (Universal Starter)
.button
display: inline-block
border: none
color: #fff
text-decoration: none
background-color: $accent
padding: 15px 45px
font-size: 13px
text-transform: uppercase
font-weight: 600