Sha256: 00ef7f47e9073117c604eaf302eb92853fc13b24b185cf364026d5e8cb5cfd70
Contents?: true
Size: 567 Bytes
Versions: 38
Compression:
Stored size: 567 Bytes
Contents
/// /// Casts `$value` into a list. /// /// @ignore Documentation: http://at-import.github.io/SassyLists/documentation/#function-sl-to-list /// /// @param {*} $value - value to cast to list /// @param {String} $separator [space] - separator to use /// /// @example /// sl-to-list(a b c, comma) /// // a, b, c /// /// @return {List} /// @function sl-to-list($value, $separator: list-separator($value)) { @return join((), $value, $separator); } /// /// @requires sl-to-list /// @alias sl-to-list /// @function sl-listify($value) { @return sl-to-list($value); }
Version data entries
38 entries across 38 versions & 8 rubygems