sass-array
v0.0.3
Published
A library that converts combinations of maps and lists to associative arrays and provides extra functionality to make working with both lists and maps more simplified.
Downloads
30
Readme
Sass Array
A library that converts combinations of maps and lists to associative arrays and provides extra functionality to make working with both lists and maps more simplified.
Note: All array functions in this package will use the array() function to convert combinations of lists and maps to associative arrays before the handle function is executed.
Array Functions
- array_count_recursive — Count all elements in an array recursively.
- array_count — Count all elements in an array.
- array_get — Get a value in an array from the given key path.
- array_keys — Return all the keys of an array.
- array_merge_recursive — Merge two arrays recursively.
- array_merge — Merge two arrays.
- array_values — Return all the values of an array.
- array — Create an array.
Install
npm install sass-array --save-dev
Example
@import '~sass-array';
$test:(1,2,3);
$test2:(4,5,6);
$test3:(shape: circle, color: red);
$test4:(people: (shayne: 21, john: 24));
@debug(array_count($test));
// 3
@debug(array_get($test4, 'people.shayne'));
// 21
@debug(array_keys($test3));
// (0: shape, 1: color)
@debug(array_merge($test, $test2));
// (0: 1, 1: 2, 2: 3, 3: 4, 4: 5, 5: 6)
@debug(array_values($test3));
// (0: circle, 1: red)