PHP Classes

File: engine/modules/contrib/foundation/source/_vendor/sassy-lists/stylesheets/functions/_remove.scss

Recommend this page to a friend!
  Classes of Aldo Tripiciano   Quanta CMS   engine/modules/contrib/foundation/source/_vendor/sassy-lists/stylesheets/functions/_remove.scss   Download  
File: engine/modules/contrib/foundation/source/_vendor/sassy-lists/stylesheets/functions/_remove.scss
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Quanta CMS
Manage content that works without a database
Author: By
Last change:
Date: 5 years ago
Size: 622 bytes
 

Contents

Class file image Download
/// /// Removes value(s) `$value` from `$list`. /// /// @ignore Documentation: http://at-import.github.io/SassyLists/documentation/#function-sl-remove /// /// @requires sl-replace /// /// @param {List} $list - list to update /// @param {*} $value - value to remove /// /// @example /// sl-remove(a b c, a) /// // b c /// /// @return {List} /// @function sl-remove($list, $value) { $_: sl-missing-dependencies('sl-replace'); @return sl-replace($list, $value, null); } /// /// @requires sl-remove /// @alias sl-remove /// @function sl-without($list, $value) { @return sl-remove($list, $value); }