Sha256: 2e90ad6e8448815880cb80f1dbf83e6304f4b0e68a8e1026688a0c9418c28851
Contents?: true
Size: 899 Bytes
Versions: 15
Compression:
Stored size: 899 Bytes
Contents
// Get single value from key in instance map based on $selector::$key // ------------------------------------------------------------------------------- // @dependence `map-fetch()` // ------------------------------------------------------------------------------- // @warning : all [Values] @returned are strings and must be converted with `to-number()` // ------------------------------------------------------------------------------- // @param $key [Breakpoint] : key // @param $value [Value] : value // @param $deep [Value] : fetch deep value // ------------------------------------------------------------------------------- // @return [Value] @function get-instance-value($key, $value, $deep: NULL) { @if $deep == NULL { @return map-fetch($flint__instances, get-family-instance($key) $value); } @else { @return map-fetch($flint__instances, get-family-instance($key) $value $deep); } }
Version data entries
15 entries across 15 versions & 1 rubygems