Sha256: 33f8688ba438c57706abfdc692f9e8e6c54db85c40a714990854e4f62d899bd3

Contents?: true

Size: 686 Bytes

Versions: 5

Compression:

Stored size: 686 Bytes

Contents

// Removes value(s) $value from $list
// -------------------------------------------------------------------------------
// @documentation http://sassylists.com/documentation/#remove
// -------------------------------------------------------------------------------
// @dependence `replace()`
// -------------------------------------------------------------------------------
// @param $list [list] : list
// @param $value [literal] : value to remove
// @param $recursive [bool] : enable / disable recursivity
// -------------------------------------------------------------------------------
// @return [list]

@function remove($list, $value) {
	@return replace($list, $value, null);
}

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
flint-gs-1.6.2 stylesheets/flint/functions/lib/_remove.scss
flint-gs-1.6.0 stylesheets/flint/functions/lib/_remove.scss
flint-gs-1.5.0 stylesheets/flint/functions/lib/_remove.scss
flint-gs-1.4.0 stylesheets/flint/functions/lib/_remove.scss
flint-gs-1.3.6 stylesheets/flint/functions/lib/_remove.scss