├── .gitignore ├── .sassdocrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── SassyLists.gemspec ├── bower.json ├── dist └── _SassyLists.scss ├── lib └── SassyLists.rb ├── package.json ├── sache.json ├── stylesheets ├── _SassyLists.scss ├── functions │ ├── _chunk.scss │ ├── _comma-list.scss │ ├── _contain.scss │ ├── _count-values.scss │ ├── _debug.scss │ ├── _every.scss │ ├── _explode.scss │ ├── _first.scss │ ├── _flatten.scss │ ├── _has-multiple-values.scss │ ├── _has-values.scss │ ├── _insert-nth.scss │ ├── _intersection.scss │ ├── _is-empty.scss │ ├── _is-single.scss │ ├── _is-symmetrical.scss │ ├── _last-index.scss │ ├── _last.scss │ ├── _loop.scss │ ├── _prepend.scss │ ├── _purge.scss │ ├── _random-value.scss │ ├── _range.scss │ ├── _remove-duplicates.scss │ ├── _remove-nth.scss │ ├── _remove.scss │ ├── _replace-nth.scss │ ├── _replace.scss │ ├── _reverse.scss │ ├── _shuffle.scss │ ├── _slice.scss │ ├── _some.scss │ ├── _sort.scss │ ├── _sum.scss │ ├── _tail.scss │ ├── _to-list.scss │ ├── _to-map.scss │ ├── _to-string.scss │ ├── _union.scss │ └── _walk.scss └── helpers │ ├── _is-number.scss │ ├── _missing-dependencies.scss │ ├── _str-compare.scss │ └── _true.scss └── test ├── functions ├── _chunk.scss ├── _comma-list.scss ├── _contain.scss ├── _count-values.scss ├── _debug.scss ├── _every.scss ├── _explode.scss ├── _first.scss ├── _flatten.scss ├── _has-multiple-values.scss ├── _has-values.scss ├── _insert-nth.scss ├── _intersection.scss ├── _is-empty.scss ├── _is-single.scss ├── _is-symmetrical.scss ├── _last-index.scss ├── _last.scss ├── _loop.scss ├── _prepend.scss ├── _purge.scss ├── _random-value.scss ├── _range.scss ├── _remove-duplicates.scss ├── _remove-nth.scss ├── _remove.scss ├── _replace-nth.scss ├── _replace.scss ├── _reverse.scss ├── _shuffle.scss ├── _slice.scss ├── _some.scss ├── _sort.scss ├── _sum.scss ├── _tail.scss ├── _to-list.scss ├── _to-map.scss ├── _to-string.scss ├── _union.scss └── _walk.scss ├── helpers ├── _is-number.scss ├── _missing-dependencies.scss ├── _str-compare.scss └── _true.scss ├── index.js └── test.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/.gitignore -------------------------------------------------------------------------------- /.sassdocrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/.sassdocrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/README.md -------------------------------------------------------------------------------- /SassyLists.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/SassyLists.gemspec -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/bower.json -------------------------------------------------------------------------------- /dist/_SassyLists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/dist/_SassyLists.scss -------------------------------------------------------------------------------- /lib/SassyLists.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/lib/SassyLists.rb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/package.json -------------------------------------------------------------------------------- /sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/sache.json -------------------------------------------------------------------------------- /stylesheets/_SassyLists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/_SassyLists.scss -------------------------------------------------------------------------------- /stylesheets/functions/_chunk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_chunk.scss -------------------------------------------------------------------------------- /stylesheets/functions/_comma-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_comma-list.scss -------------------------------------------------------------------------------- /stylesheets/functions/_contain.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_contain.scss -------------------------------------------------------------------------------- /stylesheets/functions/_count-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_count-values.scss -------------------------------------------------------------------------------- /stylesheets/functions/_debug.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_debug.scss -------------------------------------------------------------------------------- /stylesheets/functions/_every.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_every.scss -------------------------------------------------------------------------------- /stylesheets/functions/_explode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_explode.scss -------------------------------------------------------------------------------- /stylesheets/functions/_first.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_first.scss -------------------------------------------------------------------------------- /stylesheets/functions/_flatten.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_flatten.scss -------------------------------------------------------------------------------- /stylesheets/functions/_has-multiple-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_has-multiple-values.scss -------------------------------------------------------------------------------- /stylesheets/functions/_has-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_has-values.scss -------------------------------------------------------------------------------- /stylesheets/functions/_insert-nth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_insert-nth.scss -------------------------------------------------------------------------------- /stylesheets/functions/_intersection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_intersection.scss -------------------------------------------------------------------------------- /stylesheets/functions/_is-empty.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_is-empty.scss -------------------------------------------------------------------------------- /stylesheets/functions/_is-single.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_is-single.scss -------------------------------------------------------------------------------- /stylesheets/functions/_is-symmetrical.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_is-symmetrical.scss -------------------------------------------------------------------------------- /stylesheets/functions/_last-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_last-index.scss -------------------------------------------------------------------------------- /stylesheets/functions/_last.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_last.scss -------------------------------------------------------------------------------- /stylesheets/functions/_loop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_loop.scss -------------------------------------------------------------------------------- /stylesheets/functions/_prepend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_prepend.scss -------------------------------------------------------------------------------- /stylesheets/functions/_purge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_purge.scss -------------------------------------------------------------------------------- /stylesheets/functions/_random-value.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_random-value.scss -------------------------------------------------------------------------------- /stylesheets/functions/_range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_range.scss -------------------------------------------------------------------------------- /stylesheets/functions/_remove-duplicates.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_remove-duplicates.scss -------------------------------------------------------------------------------- /stylesheets/functions/_remove-nth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_remove-nth.scss -------------------------------------------------------------------------------- /stylesheets/functions/_remove.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_remove.scss -------------------------------------------------------------------------------- /stylesheets/functions/_replace-nth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_replace-nth.scss -------------------------------------------------------------------------------- /stylesheets/functions/_replace.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_replace.scss -------------------------------------------------------------------------------- /stylesheets/functions/_reverse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_reverse.scss -------------------------------------------------------------------------------- /stylesheets/functions/_shuffle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_shuffle.scss -------------------------------------------------------------------------------- /stylesheets/functions/_slice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_slice.scss -------------------------------------------------------------------------------- /stylesheets/functions/_some.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_some.scss -------------------------------------------------------------------------------- /stylesheets/functions/_sort.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_sort.scss -------------------------------------------------------------------------------- /stylesheets/functions/_sum.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_sum.scss -------------------------------------------------------------------------------- /stylesheets/functions/_tail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_tail.scss -------------------------------------------------------------------------------- /stylesheets/functions/_to-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_to-list.scss -------------------------------------------------------------------------------- /stylesheets/functions/_to-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_to-map.scss -------------------------------------------------------------------------------- /stylesheets/functions/_to-string.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_to-string.scss -------------------------------------------------------------------------------- /stylesheets/functions/_union.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_union.scss -------------------------------------------------------------------------------- /stylesheets/functions/_walk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/functions/_walk.scss -------------------------------------------------------------------------------- /stylesheets/helpers/_is-number.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/helpers/_is-number.scss -------------------------------------------------------------------------------- /stylesheets/helpers/_missing-dependencies.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/helpers/_missing-dependencies.scss -------------------------------------------------------------------------------- /stylesheets/helpers/_str-compare.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/helpers/_str-compare.scss -------------------------------------------------------------------------------- /stylesheets/helpers/_true.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/stylesheets/helpers/_true.scss -------------------------------------------------------------------------------- /test/functions/_chunk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_chunk.scss -------------------------------------------------------------------------------- /test/functions/_comma-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_comma-list.scss -------------------------------------------------------------------------------- /test/functions/_contain.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_contain.scss -------------------------------------------------------------------------------- /test/functions/_count-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_count-values.scss -------------------------------------------------------------------------------- /test/functions/_debug.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_debug.scss -------------------------------------------------------------------------------- /test/functions/_every.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_every.scss -------------------------------------------------------------------------------- /test/functions/_explode.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_explode.scss -------------------------------------------------------------------------------- /test/functions/_first.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_first.scss -------------------------------------------------------------------------------- /test/functions/_flatten.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_flatten.scss -------------------------------------------------------------------------------- /test/functions/_has-multiple-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_has-multiple-values.scss -------------------------------------------------------------------------------- /test/functions/_has-values.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_has-values.scss -------------------------------------------------------------------------------- /test/functions/_insert-nth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_insert-nth.scss -------------------------------------------------------------------------------- /test/functions/_intersection.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_intersection.scss -------------------------------------------------------------------------------- /test/functions/_is-empty.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_is-empty.scss -------------------------------------------------------------------------------- /test/functions/_is-single.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_is-single.scss -------------------------------------------------------------------------------- /test/functions/_is-symmetrical.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_is-symmetrical.scss -------------------------------------------------------------------------------- /test/functions/_last-index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_last-index.scss -------------------------------------------------------------------------------- /test/functions/_last.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_last.scss -------------------------------------------------------------------------------- /test/functions/_loop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_loop.scss -------------------------------------------------------------------------------- /test/functions/_prepend.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_prepend.scss -------------------------------------------------------------------------------- /test/functions/_purge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_purge.scss -------------------------------------------------------------------------------- /test/functions/_random-value.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_random-value.scss -------------------------------------------------------------------------------- /test/functions/_range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_range.scss -------------------------------------------------------------------------------- /test/functions/_remove-duplicates.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_remove-duplicates.scss -------------------------------------------------------------------------------- /test/functions/_remove-nth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_remove-nth.scss -------------------------------------------------------------------------------- /test/functions/_remove.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_remove.scss -------------------------------------------------------------------------------- /test/functions/_replace-nth.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_replace-nth.scss -------------------------------------------------------------------------------- /test/functions/_replace.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_replace.scss -------------------------------------------------------------------------------- /test/functions/_reverse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_reverse.scss -------------------------------------------------------------------------------- /test/functions/_shuffle.scss: -------------------------------------------------------------------------------- 1 | @include test("The sl-shuffle function") { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /test/functions/_slice.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_slice.scss -------------------------------------------------------------------------------- /test/functions/_some.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_some.scss -------------------------------------------------------------------------------- /test/functions/_sort.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_sort.scss -------------------------------------------------------------------------------- /test/functions/_sum.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_sum.scss -------------------------------------------------------------------------------- /test/functions/_tail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_tail.scss -------------------------------------------------------------------------------- /test/functions/_to-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_to-list.scss -------------------------------------------------------------------------------- /test/functions/_to-map.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_to-map.scss -------------------------------------------------------------------------------- /test/functions/_to-string.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_to-string.scss -------------------------------------------------------------------------------- /test/functions/_union.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_union.scss -------------------------------------------------------------------------------- /test/functions/_walk.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/functions/_walk.scss -------------------------------------------------------------------------------- /test/helpers/_is-number.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/helpers/_is-number.scss -------------------------------------------------------------------------------- /test/helpers/_missing-dependencies.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/helpers/_missing-dependencies.scss -------------------------------------------------------------------------------- /test/helpers/_str-compare.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/helpers/_str-compare.scss -------------------------------------------------------------------------------- /test/helpers/_true.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/helpers/_true.scss -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/index.js -------------------------------------------------------------------------------- /test/test.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/at-import/SassyLists/HEAD/test/test.scss --------------------------------------------------------------------------------