This file contains 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
// ---- | |
// libsass (v3.3.6) | |
// ---- | |
// ===================================================================== | |
// | |
// STATEFUL THEMING FOR SASS | |
// ------------------------- | |
// Indrek Paas <@indrekpaas> | |
// |
This file contains 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
<?php | |
function subval_sort( $array, $subkey ) { | |
$compare = function( $a, $b ) use ( $subkey ) { | |
return strcasecmp( $a[ $subkey ], $b[ $subkey ] ); | |
} | |
uasort( $array, $compare ); | |
return $array; | |
} |