Skip to content

Instantly share code, notes, and snippets.

v4

Planned Breaking Changes

  • ESLint has released v6, should upgrade, contribution welcome
  • vue upgrade, almost done, needs tests, assigned to myself, expected to get it done before Thursday. After that we should start writing migration documentation.
  • Make vuex & vue-router standalone plugins vuejs/vue-cli#4196

Needs to Fix

@sodatea
sodatea / extrac-edge.scss
Last active May 12, 2016 15:12
Extract the property value related to a certain edge of a box, from its shorthand syntax
@function string-split($string, $delimiter: " ") {
$list: ();
$sum: str-length($string);
@while str-length($string) > 0 {
$delimiter-index: str-index($string, $delimiter);
@if str-length($string) >= 1 and $delimiter-index == null {
$list: append($list, $string);
$string: "";