
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Read the complete documentation here: davidkpiano.github.io/sassdash
It's lodash for Sass. Sassdash.
Why? Developed with Sass toolkit developer in mind, Sassdash gives you nearly the full expressive power of lodash for JavaScript, inside your SCSS projects. Developers can also build SCSS libraries on top of Sassdash for concepts such as advanced animation composition and timing, 3D CSS rendering, geometrical rendering, complex grid frameworks, and more.
Sassdash is a collection of utility functions, just like lodash. Sassdash never outputs any CSS declarations as it provides no mixins to do so (except for _rules
, which is pretty handy).
This library contains most of the implementable functions from lodash. See below to see which functions are included.
npm install sassdash
or bower install sassdash
@import 'path/to/sassdash'
in your projectFYI: Neither Compass nor Eyeglass are required. Sassdash works in both Ruby Sass and Libsass (latest versions)!
If you are familiar with lodash, Sassdash will feel very natural to you.
$maps: (
('name': 'barney', 'age': 36),
('name': 'fred', 'age': 40)
);
_pluck($maps, 'name'); // ('barney', 'fred')
Functions are chainable in Sassdash via _(...)
, but there is no lazy evaluation. Results are output immediately. Since Sass does not have a natural concept of method linking, linking in Sassdash is done by having each link represent:
$foobar: ('a' 'b' 'c', 'd' 'e' 'f', 'g' 'h' 'i');
_($foobar,
_map _join,
_reduce _str-concat,
_concat 'jkl',
_join ' -- '); // 'abcdefghi -- jkl'
Also, just as in lodash, iteratee functions (such as those used with _map
) are called with three arguments: $value, $index, $collection
. Keep this in mind when passing in your functions as iteratee functions. If your function only expects the $value
argument, you can either:
@function is-even($value, $args...) { ... }
_ary
: _map($list, _ary(is-even));
However, native Sass functions as iteratees are automatically guarded! You can simply include them as an interatee:
$capitals: ('Tallahassee', 'Springfield', 'Austin');
$uppercase-capitals: _map($capitals, to-upper-case);
// => ('TALLAHASSEE', 'SPRINGFIELD', 'AUSTIN')
There are over 800 unit tests. With node-sass, they usually take under 10 seconds to run. With Ruby Sass, they may take anywhere from 1 to 2 minutes.
cd path/to/sassdash
npm install
npm test
Sassdash includes a number of helper functions not available in lodash, which include utility functions and implementations of native Javascript functions:
char
functions - _char-at
, _char-code
, _char-code-at
number
functions - _parse-float
(alias _to-number
) - similar to JavaScript parseFloat
value
functions - _memo
for easy cache manipulationlist
functions - _reverse
, _concat
, and _splice
string
functions - _str-concat
and _join
(list to string)* Example:
$map: ('foo': ('bar': ('baz': 'quo')));
$list: (1, ('a': 2), 3);
$baz: _get($map, 'foo' 'bar' 'baz'); // => 'quo'
$something: _get($list, 2 'a'); // => 2
// You can also do this:
$baz: _get($map, 'foo.bar.baz'); // => 'quo'
$map: _set($map, 'foo' 'bar' 'test', 42);
// => ('foo': ('bar': ('baz': 'quo', 'test': 42)))
$list: _set($list, 2 'a', 42);
// => (1, ('a': 42), 3)
Sassdash | lodash |
---|---|
_chunk | _.chunk |
_compact | _.compact |
_difference | _.difference |
_drop | _.drop |
_drop-right | _.dropRight |
_drop-right-while | _.dropRightWhile |
_drop-while | _.dropWhile |
_fill | _.fill |
_find-index | _.findIndex |
_find-last-index | _.findLastIndex |
_first | _.first |
_flatten | _.flatten |
_flatten-deep | _.flattenDeep |
_head | _.head → first |
_index-of | _.indexOf |
_initial | _.initial |
_intersection | _.intersection |
_last | _.last |
_last-index-of | _.lastIndexOf |
_object | _.object → zipObject |
_pull | _.pull |
:x: | _.pullAt |
:x: | _.remove |
_rest | _.rest |
_slice | _.slice |
:clock130: | _.sortedIndex |
:clock130: | _.sortedLastIndex |
_tail | _.tail → rest |
_take | _.take |
_take-right | _.takeRight |
_take-right-while | _.takeRightWhile |
_take-while | _.takeWhile |
_union | _.union |
_uniq | _.uniq |
_unique | _.unique → uniq |
_unzip | _.unzip |
_without | _.without |
_xor | _.xor |
_zip | _.zip |
_zip-map | _.zipObject |
Sassdash | lodash |
---|---|
_ | _ |
:x: | _.chain |
:x: | _.tap |
:x: | _.thru |
Sassdash | lodash |
---|---|
_all | _.all → every |
_any | _.any → some |
_at | _.at |
_collect | _.collect → map |
_contains | _.contains → includes |
_count-by | _.countBy |
_detect | _.detect → find |
_each | _.each → forEach |
_each-right | _.eachRight → forEachRight |
_every | _.every |
_filter | _.filter |
_find | _.find |
_find-last | _.findLast |
_find-where | _.findWhere |
_foldl | _.foldl → reduce |
_foldr | _.foldr → reduceRight |
_for-each | _.forEach |
_for-each-right | _.forEachRight |
_group-by | _.groupBy |
_include | _.include → includes |
_includes | _.includes |
_index-by | _.indexBy |
_inject | _.inject → reduce |
_invoke | _.invoke |
_map | _.map |
_partition | _.partition |
_pluck | _.pluck |
_reduce | _.reduce |
_reduce-right | _.reduceRight |
_reject | _.reject |
_sample | _.sample |
_select | _.select → filter |
_shuffle | _.shuffle |
_size | _.size |
_some | _.some |
_sort-by | _.sortBy |
_sort-by-all | _.sortByAll |
_sort-by-order | _.sortByOrder |
_where | _.where |
Sassdash | lodash |
---|---|
:x: | _.now |
Sassdash | lodash |
---|---|
_after | _.after |
_ary | _.ary |
_backflow | _.backflow → flowRight |
_before | _.before |
_bind | _.bind |
:clock130: | _.bindAll |
:clock130: | _.bindKey |
_compose | _.compose → flowRight |
:x: | _.curry |
:x: | _.curryRight |
:x: | _.debounce |
:x: | _.defer |
:x: | _.delay |
_flow | _.flow |
_flow-right | _.flowRight |
_memoize | _.memoize |
_negate | _.negate |
_once | _.once |
_partial | _.partial |
_partial-right | _.partialRight |
:clock130: | _.rearg |
:clock130: | _.spread |
:x: | _.throttle |
:x: | _.wrap |
Sassdash | lodash |
---|---|
:x: | _.clone |
:x: | _.cloneDeep |
_is-arglist | _.isArguments |
_is-list | _.isArray |
_is-boolean | _.isBoolean |
:x: | _.isDate |
:x: | _.isElement |
_is-empty | _.isEmpty |
_is-equal | _.isEqual |
_is-error | _.isError |
_is-finite | _.isFinite |
_is-function | _.isFunction |
_is-match | _.isMatch |
:x: | _.isNaN |
_is-native | _.isNative |
_is-null | _.isNull |
_is-number | _.isNumber |
_is-map | _.isObject |
_is-plain-map | _.isPlainObject |
:x: | _.isRegExp |
_is-string | _.isString |
:x: | _.isTypedArray |
:x: | _.isUndefined |
_to-list | _.toArray |
_to-map | _.toPlainObject |
Sassdash | lodash |
---|---|
_add | _.add |
_max | _.max |
_min | _.min |
_sum | _.sum |
Sassdash | lodash |
---|---|
:clock130: | _.inRange |
_rand | _.random |
Sassdash | lodash |
---|---|
_assign | _.assign |
_create | _.create |
_defaults | _.defaults |
_extend | _.extend → assign |
_find-key | _.findKey |
_find-last-key | _.findLastKey |
_for-in | _.forIn |
_for-in-right | _.forInRight |
_for-own | _.forOwn |
_for-own-right | _.forOwnRight |
_functions | _.functions |
_has | _.has |
_invert | _.invert |
_keys | _.keys |
_keys-in | _.keysIn |
_map-values | _.mapValues |
_merge | _.merge |
_methods | _.methods → functions |
_omit | _.omit |
_pairs | _.pairs |
_pick | _.pick |
_result | _.result |
:x: | _.transform |
_values | _.values |
_values-in | _.valuesIn |
Sassdash | lodash |
---|---|
_camel-case | _.camelCase |
_capitalize | _.capitalize |
:x: | _.deburr |
_ends-with | _.endsWith |
_escape | _.escape |
:x: | _.escapeRegExp |
_kebab-case | _.kebabCase |
_pad | _.pad |
_pad-left | _.padLeft |
_pad-right | _.padRight |
_parse-int | _.parseInt |
_repeat | _.repeat |
_snake-case | _.snakeCase |
_start-case | _.startCase |
_starts-with | _.startsWith |
:x: | _.template |
_trim | _.trim |
_trim-left | _.trimLeft |
_trim-right | _.trimRight |
_trunc | _.trunc |
_unescape | _.unescape |
_words | _.words |
Sassdash | lodash |
---|---|
:x: | _.attempt |
_callback | _.callback |
_constant | _.constant |
_identity | _.identity |
_iteratee | _.iteratee → callback |
_matches | _.matches |
_matches-property | _.matchesProperty |
:x: | _.mixin |
:x: | _.noConflict |
_noop | _.noop |
_property | _.property |
_property-of | _.propertyOf |
_range | _.range |
:x: | _.runInContext |
_times | _.times |
_unique-id | _.uniqueId |
FAQs
The Sass implementation of lodash.
The npm package sassdash receives a total of 4,295 weekly downloads. As such, sassdash popularity was classified as popular.
We found that sassdash demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.