--- /dev/null
+///
+/// Returns whether `$list` contains `$value`.
+///
+/// @ignore Documentation: http://at-import.github.io/SassyLists/documentation/#function-sl-contain
+///
+/// @param {List} $list - list to check
+/// @param {*} $value - value to look for
+///
+/// @example
+/// sl-contain(a b c, a)
+/// // true
+///
+/// @example
+/// sl-contain(a b c, z)
+/// // false
+///
+/// @return {Bool}
+///
+
+@function sl-contain($list, $value) {
+ @return not not index($list, $value);
+}
+
+///
+/// @requires sl-contain
+/// @alias sl-contain
+///
+
+@function sl-include($list, $value) {
+ @return sl-contain($list, $value);
+}
'node_modules/@(normalize-scss)/sass/**/*.scss',
'node_modules/@(sassy-lists)/stylesheets/helpers/_missing-dependencies.scss',
'node_modules/@(sassy-lists)/stylesheets/helpers/_true.scss',
+ 'node_modules/@(sassy-lists)/stylesheets/functions/_contain.scss',
'node_modules/@(sassy-lists)/stylesheets/functions/_purge.scss',
'node_modules/@(sassy-lists)/stylesheets/functions/_remove.scss',
'node_modules/@(sassy-lists)/stylesheets/functions/_replace.scss',
'node_modules/@(normalize-scss)/sass/**/*.scss',
'node_modules/@(sassy-lists)/stylesheets/helpers/missing-dependencies',
'node_modules/@(sassy-lists)/stylesheets/helpers/true',
+ 'node_modules/@(sassy-lists)/stylesheets/functions/contain',
'node_modules/@(sassy-lists)/stylesheets/functions/purge',
'node_modules/@(sassy-lists)/stylesheets/functions/remove',
'node_modules/@(sassy-lists)/stylesheets/functions/replace',
@import '../_vendor/normalize-scss/sass/normalize';
@import '../_vendor/sassy-lists/stylesheets/helpers/missing-dependencies';
@import '../_vendor/sassy-lists/stylesheets/helpers/true';
+@import '../_vendor/sassy-lists/stylesheets/functions/contain';
@import '../_vendor/sassy-lists/stylesheets/functions/purge';
@import '../_vendor/sassy-lists/stylesheets/functions/remove';
@import '../_vendor/sassy-lists/stylesheets/functions/replace';