Sha256: c01b7f6fc562137ed0b2c0c198beb28c8bdee949f03984f6033832ba5ad8d498

Contents?: true

Size: 585 Bytes

Versions: 7

Compression:

Stored size: 585 Bytes

Contents

// Remove $value from $list
// -------------------------------------------------------------------------------
// @documentation http://sassylists.com/documentation/#remove
// -------------------------------------------------------------------------------
// @param $list [list] : list
// @param $value [literal] : value to flint-remove
// @param $recursive [bool] : enable / disable recursivity
// -------------------------------------------------------------------------------
// @return [list]

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
flint-gs-1.12.0 stylesheets/flint/functions/lib/_remove.scss
flint-gs-1.11.2 stylesheets/flint/functions/lib/_remove.scss
flint-gs-1.10.0 stylesheets/flint/functions/lib/_remove.scss
flint-gs-1.9.1 stylesheets/flint/functions/lib/_remove.scss
flint-gs-1.8.0 stylesheets/flint/functions/lib/_remove.scss
flint-gs-1.7.2 stylesheets/flint/functions/lib/_remove.scss
flint-gs-1.7.0 stylesheets/flint/functions/lib/_remove.scss