• Stars
    star
    386
  • Rank 110,830 (Top 3 %)
  • Language SCSS
  • Created over 9 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

The Sass implementation of lodash.

Sassdash

Read the complete documentation here: davidkpiano.github.io/sassdash

Sassdash logo

Join the chat at https://gitter.im/davidkpiano/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).

Getting Started

This library contains most of the implementable functions from lodash. See below to see which functions are included.

  1. npm install sassdash or bower install sassdash
  2. @import 'path/to/sassdash' in your project
  3. Use your new powers wisely.

FYI: Neither Compass nor Eyeglass are required. Sassdash works in both Ruby Sass and Libsass (latest versions)!

Using Sassdash

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:

  • The method name (first item)
  • The arguments (2nd - nth items)
$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:

  • Discard the rest of the arguments in the function definition: @function is-even($value, $args...) { ... }
  • Wrap the function with _ary: _map($list, _ary(is-even));

However, native Sass functions as iteratees are automatically guarded! You can simply include them as an iteratee:

$capitals: ('Tallahassee', 'Springfield', 'Austin');

$uppercase-capitals: _map($capitals, to-upper-case);
// => ('TALLAHASSEE', 'SPRINGFIELD', 'AUSTIN')

Running Tests

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.

  1. cd path/to/sassdash
  2. npm install
  3. npm test

New Functions

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 manipulation
  • list 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)

Available lodash Functions

  • ❌ - Not implemented
  • πŸ•œ - Coming soon

List (Array)

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
❌ _.pullAt
❌ _.remove
_rest _.rest
_slice _.slice
πŸ•œ _.sortedIndex
πŸ•œ _.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

Chain

Sassdash lodash
_ _
❌ _.chain
❌ _.tap
❌ _.thru

Collection

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

Date

Sassdash lodash
❌ _.now

Function

Sassdash lodash
_after _.after
_ary _.ary
_backflow _.backflow β†’ flowRight
_before _.before
_bind _.bind
πŸ•œ _.bindAll
πŸ•œ _.bindKey
_compose _.compose β†’ flowRight
❌ _.curry
❌ _.curryRight
❌ _.debounce
❌ _.defer
❌ _.delay
_flow _.flow
_flow-right _.flowRight
_memoize _.memoize
_negate _.negate
_once _.once
_partial _.partial
_partial-right _.partialRight
πŸ•œ _.rearg
πŸ•œ _.spread
❌ _.throttle
❌ _.wrap

Lang

Sassdash lodash
❌ _.clone
❌ _.cloneDeep
_is-arglist _.isArguments
_is-list _.isArray
_is-boolean _.isBoolean
❌ _.isDate
❌ _.isElement
_is-empty _.isEmpty
_is-equal _.isEqual
_is-error _.isError
_is-finite _.isFinite
_is-function _.isFunction
_is-match _.isMatch
❌ _.isNaN
_is-native _.isNative
_is-null _.isNull
_is-number _.isNumber
_is-map _.isObject
_is-plain-map _.isPlainObject
❌ _.isRegExp
_is-string _.isString
❌ _.isTypedArray
❌ _.isUndefined
_to-list _.toArray
_to-map _.toPlainObject

Math

Sassdash lodash
_add _.add
_max _.max
_min _.min
_sum _.sum

Number

Sassdash lodash
πŸ•œ _.inRange
_rand _.random

Object

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
❌ _.transform
_values _.values
_values-in _.valuesIn

String

Sassdash lodash
_camel-case _.camelCase
_capitalize _.capitalize
❌ _.deburr
_ends-with _.endsWith
_escape _.escape
❌ _.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
❌ _.template
_trim _.trim
_trim-left _.trimLeft
_trim-right _.trimRight
_trunc _.trunc
_unescape _.unescape
_words _.words

Utility

Sassdash lodash
❌ _.attempt
_callback _.callback
_constant _.constant
_identity _.identity
_iteratee _.iteratee β†’ callback
_matches _.matches
_matches-property _.matchesProperty
❌ _.mixin
❌ _.noConflict
_noop _.noop
_property _.property
_property-of _.propertyOf
_range _.range
❌ _.runInContext
_times _.times
_unique-id _.uniqueId

More Repositories

1

react-redux-form

Create forms easily in React with Redux.
JavaScript
2,066
star
2

flipping

Flipping awesome animations.
TypeScript
1,380
star
3

useEffectReducer

useReducer + useEffect = useEffectReducer
TypeScript
791
star
4

RxCSS

JavaScript
416
star
5

sass-svg

Inline SVG for Sass.
CSS
314
star
6

frontend-masters-xstate-workshop

Frontend Masters State Machines & XState Workshop
JavaScript
243
star
7

frontend-masters-css

SCSS
169
star
8

sassport

Sass with JavaScript superpowers.
JavaScript
147
star
9

frontend-masters-react-workshop

Code for the Frontend Masters React State Modeling Workshop
JavaScript
128
star
10

nm8

Ridiculously small animation library.
TypeScript
122
star
11

frontend-masters-xstate-v2

Frontend Masters XState Workshop v2
JavaScript
121
star
12

react-simple-datepicker

Simple datepicker for React.
JavaScript
119
star
13

xstate-test-demo

Demo React project for model-based testing with @xstate/test
JavaScript
111
star
14

durable-entities-xstate

XState + Durable Entities = πŸš€
TypeScript
53
star
15

xstate-react-workshop

React Finland - Modeling React Applications with Statecharts Workshop
JavaScript
24
star
16

weatherboard

TypeScript
23
star
17

xviz

Small graph visualization library
TypeScript
19
star
18

propelcss

CSS
19
star
19

postcss-emoji-style

JavaScript
19
star
20

xstate-todomvc

Created with CodeSandbox
JavaScript
18
star
21

xstate-examples

Example XState Projects
17
star
22

xstate-command

Command palette with XState
TypeScript
12
star
23

react-finland-xstate-2022

React Finland 2022 XState Workshop
JavaScript
11
star
24

mbt-workshop

Model-Based Testing Workshop
JavaScript
11
star
25

react-finland-xstate-workshop

React Finland XState Workshop
JavaScript
11
star
26

sass-v

CSS Custom Properties + Sass = πŸš€
SCSS
10
star
27

RxAnimate

Reactive Animations
TypeScript
10
star
28

openapi-test

OpenAPI Testing Library
TypeScript
10
star
29

node-azure-mvc

Example application for creating an MVC Express + Node + TypeScript app and deploying it to Azure
TypeScript
10
star
30

redux-test-store

Test existing stores in Redux, the easy way
JavaScript
8
star
31

skylake

πŸ’Ž A light JavaScript library.
JavaScript
8
star
32

xstate-interpreter

Reactive statechart interpreter.
TypeScript
7
star
33

paz

Peaceful Azure deployments with node
6
star
34

movement

Sass/SCSS/CSS animation framework for creating, composing, sequencing, and using animations.
CSS
6
star
35

davidkpiano

5
star
36

getrect

TypeScript
5
star
37

rxio

TypeScript
4
star
38

xstate-tetris

TypeScript
4
star
39

issuspensereadyyet

...
JavaScript
4
star
40

tracker

Track DOM elements efficiently.
4
star
41

netlify-edge-machine

TypeScript
4
star
42

neo4j-workshop

Neo4j Statecharts Workshop
JavaScript
3
star
43

rxform

TypeScript
3
star
44

gulp-sassport

Sassport gulp plugin
JavaScript
3
star
45

sassport-reference

Import by Reference in Sass using Sassport
JavaScript
3
star
46

vanilla-todomvc-ts

TypeScript
3
star
47

cadenza-old

SCSS/CSS Framework
CSS
2
star
48

movi

Stately animations
2
star
49

cse-articles

Microsoft CSE Articles
2
star
50

rxstyle

Animation framework for RxJS
JavaScript
2
star
51

sassport-svgo

Inline, optimized SVG inside your Sass files.
JavaScript
2
star
52

sassport-dynamic

Dynamic imports for Node-Sass using Sassport
JavaScript
2
star
53

rrf-docs

CSS
2
star
54

react-redux-form-builder

React Redux Form Builder
JavaScript
2
star
55

webanimate

TypeScript
2
star
56

stately-site

HTML
2
star
57

cz-temp

CSS
2
star
58

angular-fluid

Form Logic User Interface Directive - Form Logic implementation for AngularJS
CSS
2
star
59

orlandodevs-site

HTML
1
star
60

react-redux-form-docs

1
star
61

styledash

JavaScript
1
star
62

react-state-machine

Finite State Machines for React.
1
star
63

logicapp-specflow-demo

C#
1
star
64

generator-sass-guide

Yeoman generator for Sass Guidelines
JavaScript
1
star
65

sassport-math

Math for Sass.
JavaScript
1
star
66

emojio

1
star
67

goatspresso

Goats and Espresso
JavaScript
1
star
68

test-gen-demo

TypeScript
1
star
69

react-redux-form-book

1
star
70

postcss-movement

1
star
71

rxy

For Atomic Hack Party
PHP
1
star
72

movt

Movement
JavaScript
1
star
73

react-dynamic

Dynamic.js Animation Library for React
1
star
74

styleguides

1
star
75

react-move

Nothing to see here
JavaScript
1
star
76

cadenza

1
star
77

sass-z

Z-index management for Sass.
1
star